0
我使用WordPress的一個插件,它目前正在網址是這樣的:http://www.example.com/?name=the-office
htaccess的動態網址
我想所有類似的URL重定向到http://www.example.com/name/the-office
Current htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
我試了幾件事情並沒有什麼似乎工作,也許我需要把RewriteCond放在IfModule中?不確定,htaccess對我來說是陌生的。提前致謝。
將'/?name = the-office'重定向到'/ name/the-office'不會解決首先使用「錯誤的URL」的問題。您還需要調整Wordpress以傳遞其中包含「正確網址」的文檔。 – Gumbo 2010-07-28 14:55:24
也檢查在Apache中你的mod_rewrite已啓用 – Nealv 2010-07-28 15:02:04