具有多个规则的.htaccess重定向

时间:2017-12-14 12:01:37

标签: php .htaccess redirect mod-rewrite

基本上我想做的是:

1)将任何.html请求重定向到.php页面。

2)如果发生任何404,那么它应该重定向到www.domain.com

3)domain.com应重定向到www.domain.com

4)www.domain.com/index.html应该重定向到www.domain.com

这是我的htaccess代码

RewriteEngine On
RewriteRule ^(.*)\.html$ $1.php [L]

<IfModule mod_rewrite.c> 
RewriteEngine On 
RewriteBase / 
RewriteRule ^fr/(.)*$ / [R=301,NC,L]  # Added line
RewriteRule ^index\.php$ - [L] 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule . http://www.domsdain.com/index.php [L] 
</IfModule> 


RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

RewriteRule ^(.*)index\.(php|html?)$ /$1 [R=301,NC,L]

使用上述代码第4条规则(www.domain.com/index.html应重定向到www.domain.com)无效

1 个答案:

答案 0 :(得分:2)

您可以重构以使用这些规则:

ErrorDocument 404 http://www.examle.com/
RewriteEngine On
RewriteBase / 

RewriteCond %{THE_REQUEST} \s/+index\.(?:php|html) [NC]
RewriteRule ^ http://www.examle.com/ [L,R=301]

RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L,NE]

RewriteRule ^(.+)\.html$ $1.php [L,NC]

RewriteRule ^fr/(.)*$ / [R=301,NC,L]

确保清除浏览器缓存或使用新浏览器进行测试。