4133789 发表于 2017-3-14 15:50:11

nginx rewrite 伪静态和301的兼容问题

如题,我自己在网上搜索了很多但是发现 伪静态和301重定向没有一个很好的讲解
我在网上查到的301解释
主要就是在 rewrite 规则后面 跟上permanent
但是我的问题就来了 因为我已经使用了 rewrite 进行了伪静态
location / {
rewrite "^/channel-(+)\.html$" /plus/list.php?tid=$1 last;
}
然后 重写一行rewrite 后面跟上permanent 是会出错的.同样吧上面的last 换成permanent 也会报错.
rewrite "^/channel-(+)\.html$" /plus/list.php?tid=$1 permanent;


想请教一下 如何在伪静态之后,再进行301重定向?
页: [1]
查看完整版本: nginx rewrite 伪静态和301的兼容问题