我使用這個重定向到www阿帕奇不能正常重定向 '的/ usr /首頁/用戶名/的public_html /'
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
非www請求應該重定向來自:
http://example.com/intranet
要:
http://www.example.com/intranet
但它重定向到:
http://www.example.com//usr/home/username/public_html/intranet
發生了什麼,我該如何解決這個問題?
你把它放到虛擬主機的配置或從字面上'.htaccess'? – zerkms 2014-10-10 04:13:03
我已經把它放在一個.htaccess文件中的子目錄'intranet'中。 – BernardoLima 2014-10-10 04:14:16
這很好奇。我有類似的做相反的工作,它工作正常:'RewriteCond%{HTTP_HOST}^www \。(。*)$ [NC] RewriteRule ^(。*)$ http://%1/$ 1 [R = 301,L,QSA]' – zerkms 2014-10-10 04:15:55