我正在嘗試將www和非www重定向到非www子文件夾/論壇。htaccess 301將www和非www重定向到非www子文件夾
我目前使用此代碼:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.example\.com$ [OR]
RewriteCond %{REQUEST_URI} ^/$
RewriteRule ^(.*)$ http://example.com/forums/$1 [R=301,L]
它運作良好,但也存在一些問題,與此有關。
如果我輸入URL:example.com,它會將我帶到example.com/forums。 -OK
如果我輸入URL:example.com/test,它會將我帶到example.com/test。 -OK
如果我輸入URL:www.example.com,它會將我帶到example.com/forums。 -OK
如果我輸入URL:www.example.com/test,它會將我帶到example.com/forums/test。 -WRONG
如何解決www.example.com/test發生的錯誤?
我想要www.example.com/test導致example.com/test。
請幫助我,謝謝!
幫我這麼多謝謝! – Jake 2011-12-30 22:53:19