有缓存那个gzip始终有问题,干脆换成这个无缓存版本。
本gzip.php默认压缩输出css、js、html、xml等内容。
Rewrite规则:
#gzip for non-PHP<IfModule mod_rewrite.c>RewriteEngine OnRewriteBase /RewriteCond %{REQUEST_FILENAME} -fRewriteCond %{REQUEST_FILENAME} ^.*\.(css|js|html|......
写了一段代码,首先判断是不是当前所用域名,然后判断是否是蜘蛛,如果两者同时成立,则转到统一的域名下。这个转向主要通过Rewrite来实现,说实话,ReWrite的功能很强大。
.htaccess代码如下:
#BEGIN Redirect all the URL to the specific domain fot bots
<IfModule mod_rewrite.c>
......