2015-04-17 39 views

回答

1

試試這個

RewriteEngine on 
RewriteBase/
RewriteCond %{HTTP_HOST} ^(www\.)?website\.com$ [NC] 
RewriteRule .* http://www.website.com/home [R=301,L] 

此規則重定向到www.website.com www.website.com/home

或者添加到您的.htaccess

RewriteRule ^/?$ /home [R=301,L] 
1

一條簡單規則可以處理兩個重定向:

RewriteRule ^/?(index\.php)?$ /home [NC,L,R=301]