我已經嘗試下面的代碼重定向非WWW到WWW URL在WordPress的但它不工作。.htacces重定向不工作非WWW URL到WWW URL
請檢查以下代碼是否正確?
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain.ie[nc]
RewriteRule ^(.*)$ http://www.domain.ie/$1 [r=301,nc]
RewriteBase/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
待辦事項你有mod_rewrite安裝?你看到日誌中有任何錯誤嗎? – Dekel
爲什麼不工作?你收到一些錯誤信息嗎? –
@KoenHollander 500內部服務器錯誤 –