我試圖在我的.htaccess文件中爲我的WordPress網站創建一個重寫。我需要 www.a3performance.com/fastestsuit 指向 http://www.a3performance.com/legend-fastest-racing-suit/URL重寫在.htaccess中無法正常工作
我想這一點,但它似乎沒有工作?
RewriteRule ^fastestsuit/?$ legend-fastest-racing-suit [NC,L]
我試圖在我的.htaccess文件中爲我的WordPress網站創建一個重寫。我需要 www.a3performance.com/fastestsuit 指向 http://www.a3performance.com/legend-fastest-racing-suit/URL重寫在.htaccess中無法正常工作
我想這一點,但它似乎沒有工作?
RewriteRule ^fastestsuit/?$ legend-fastest-racing-suit [NC,L]
似乎你需要在這裏使用從一個文件夾重定向到新文件夾。 事情是這樣的:
RewriteRule ^subdirectory/(.*)$ /anotherdirectory/$1 [R=301,NC,L]
這似乎並不奏效...... –
似乎問題不能通過.htaccess解決,而是通過Wordpress中的永久URL設置解決。 也許你只需要改變slu。。 – labris
其實@labris思想工作。出於某種原因,我的服務器花了一點時間來註冊.htaccess更改。
RewriteRule ^subdirectory/(.*)$ /anotherdirectory/$1 [R=301,NC,L]
你看到了什麼錯誤? – starkeen
頁面出現404錯誤 –