4 articles
Monday, Mar 14, 2022
主机是cpanel ,服务器是openlitespeed 弄mediawiki 伪静态弄了好久,后来求助官方才弄好 注意,本次安装的mediawiki 程序是在网站根目录 RewriteEngine On RewriteBase / RewriteCond %{REQUESTURI} !^/skin...
Wednesday, Feb 10, 2021
apache非www重定向到www和https的代码 需求就是,非www访问的自动重定向到www访问, 并且把http访问重定向到https,代码如下 RewriteEngine On RewriteCond %{HTTPHOST} ^youdomain.com$ NC RewriteRule . ...
Friday, Mar 13, 2020
Apache format web page HTML source method This is to remove the extra spaces in the source code of the webpage. Reduce web page transmission data and ...
Apache 格式化网页HTML源码的方法 即是把网页源代码中多余的空格删除, 减小网页传输数据,加速网页传输 把下面代码添加到网站根目录的 .htaccess文件中 AddOutputFilterByType DEFLATE text/plain AddOutputFilterByType DEF...