系統中有一個需求是將某一段url連結位址轉鏈到另外一段位址,model類似於將 localhost/wish/1234.jhtml自動前往localhost/community/detail/1234.jhtml。
目前Nginx我的設定寫法是
location ~ ^/wish/$ { rewrite ^/(.*)$ ^/community/detail/$1 permanent; }
但是運行後系統提示404...請問我這句該如何改呢?非常感謝!
設定檔寫錯了,按下面的寫就行,不用放在location下。 rewrite ^/wish/(.*).jhtml$ /community/detail/.jhtml permanent;
rewrite ^/wish/(.*).jhtml$ /community/detail/.jhtml permanent;
設定檔寫錯了,按下面的寫就行,不用放在location下。
rewrite ^/wish/(.*).jhtml$ /community/detail/.jhtml permanent;