系統(tǒng)中有一個需求是將某一段url鏈接地址轉(zhuǎn)鏈到另外一段地址,model類似于將
localhost/wish/1234.jhtml自動轉(zhuǎn)到localhost/community/detail/1234.jhtml。
目前Nginx我的配置寫法是
location ~ ^/wish/$ {
rewrite ^/(.*)$??^/community/detail/$1 permanent;
}
但是運行后系統(tǒng)提示404...請問我這句應(yīng)該如何改呢?非常感謝!
配置文件寫錯了,按下面的寫就行,不用放在location下。rewrite ^/wish/(.*).jhtml$ /community/detail/.jhtml permanent;