发布时间:2013-10-14 10:44:18
nginx和php下的ssi不生效问题。
原因:php内部进行压缩,压缩之后nginx不能识别
解决:修改php.ini
禁掉 zlib.output_compression = On
?......【阅读全文】
发布时间:2013-10-09 11:37:05
if ($host ~* "^baomihua.free.cn" ) {
rewrite "^/([0-9]+)\.html(\?.+)*$" /show.php?contentid=$1&tpl=1 last;
rewrite "^/([0-9]+)_([0-9]+)\.html(\?.+)*$" /show.php?contentid=$1&vod=$2&tpl=1 last;
rewrite "^/(.*)\.html(\?.+)*$" http://www.free.cn/$1.html$2 permanent;
rewrite "^/(.+/)*(\?.+)*$" http://www.free.cn/$1$2 permanent;
}
这个就说明,主机头带有‘baomihua.free.cn’的将会使用下面的rewrite规则。
而且一般在主机名前面加上“^” 代表以** 开头。
下面的rewrite规则则代表
rewrite "^/([0-9]+)\.html(\?.+)*$" /......【阅读全文】