在的.htaccess我有這樣的規則,從site.com重定向到www.site.com:重定向從/index.html
RewriteEngine on
RewriteCond %{HTTP_HOST} ^site.com$
RewriteRule ^(.*)$ http://www.site.com/$1 [L,R=301]
它工作正常,但我也需要從網站重定向。 COM/index.html的,以http://www.site.com 我有加這一個:
RewriteCond %{HTTP_HOST} ^site.com/index.html$
RewriteRule ^(.*)$ http://www.site.com/$1 [L,R=301]
但它不工作:(任何人的幫助,請
的RewriteCond%{HTTP_HOST}^$ site.com重寫規則 ^(。*)$ http://www.site.com/$1 [L,R = 301]這個工作,但不是這個 - RewriteRule^index.html $/[R = 301,L] - 我已經清除我的瀏覽器緩存ofcourse。 – 2012-02-29 15:57:14