nginx伪静态设置不对
网站的链接apache伪静态是RewriteRule ^(.*).html$ /index\.php\?p=$1 效果http://www.xxx.com/981279837912ug12gw1g.html在apache下生效。
但是换成nginx后保存不生效了,重启也不行,帮看下规则对不
location / {
rewrite ^/(.*).html$ /index.php?p=$1 last;
}
伪静态规则不对
请参考nginx url重写规则手册
页:
[1]