1
使用.htaccess
,我怎麼可以重寫URL,這樣當訪客類型:重寫的index.php和index.html在.htaccess
http://www.domain.com/index.php
http://www.domain.com/index.html
,他們將被重定向到http://www.domain.com/
。
我重定向嘗試過,但它需要我在環...
請,如果你能幫助我。
使用.htaccess
,我怎麼可以重寫URL,這樣當訪客類型:重寫的index.php和index.html在.htaccess
http://www.domain.com/index.php
http://www.domain.com/index.html
,他們將被重定向到http://www.domain.com/
。
我重定向嘗試過,但它需要我在環...
請,如果你能幫助我。
RewriteEngine On
RewriteRule ^index\.(php|html?)$ http://www.mydomain.com/ [R=301,L]
如果標誌是[NC,R,L]而不是[R = 301,L],會有什麼區別? – 2011-10-10 17:22:45