我想從我的網站域名的所有網址中刪除www。我用下面的代碼如何使用htaccess從我的網站域名的所有網址中刪除www
RewriteCond %{HTTP_HOST} ^www\.example\.com$
RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]
但這個代碼僅重定向到http://www.example.com
http://example.com
我想http://www.example.com/abcd
作爲http://example.com/abcd
也
請幫助我。你的幫助將不勝感激。提前致謝。
感謝您的答覆,但我的問題沒有解決..我想'http://www.example.com/abcd爲http:// example.com/abcd' – Vinie
這就是這個答案是做什麼。確保此規則是您在root .htaccess中的第一條規則,並在新瀏覽器中進行測試。 – anubhava
謝謝它的作品:) – Vinie