0
我寫的htaccess重寫 我實際的URL是重定向URL已經在htaccess的
https://www.example.com/index.php?route=information/partnership_form
改寫爲
https://www.example.com/for-brands/partner-with-us
因爲我已經寫規則爲
`RewriteRule ^for-brands/partner-with-us$ https://www.example.com/index.php?route=information/partnership_form [NC,L]`
工作正常但我想要重定向,如果一些用戶訪問direclty https://www.example.com/index.php?route=information/partnership_form
到
https://www.example.com/for-brands/partner-with-us
下面是我的代碼重定向,但我已經嘗試過很多辦法形成計算器等環節仍然我找不到任何解決方案
rewriterule ^index\.php?route=information\/partnership_form(.*)$ /for-sports-brands/partner-with-us$1 [r=301,nc]
我試過了你的代碼,但是它的retuning error這個頁面沒有正確的重定向,如果我在'rewriteRule^index \ .php $/for-sports-brands/partner-with-我們? [NC,L,R]' –