url-rewrite - Nginx 中rewrite url路径地址存在问题
巴扎黑
巴扎黑 2017-05-16 17:26:14
0
1
577

系统中有一个需求是将某一段url链接地址转链到另外一段地址,model类似于将
localhost/wish/1234.jhtml自动转到localhost/community/detail/1234.jhtml。

目前Nginx我的配置写法是

location ~ ^/wish/$ {
rewrite ^/(.*)$  ^/community/detail/$1 permanent;
}

但是运行后系统提示404...请问我这句应该如何改呢?非常感谢!

巴扎黑
巴扎黑

全部回复(1)
洪涛

配置文件写错了,按下面的写就行,不用放在location下。
rewrite ^/wish/(.*).jhtml$ /community/detail/.jhtml permanent;

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板