重定向index.html到根htaccess和非www到www?

时间:2018-09-11 06:34:40

标签: php regex .htaccess redirect

我写的这段代码是对还是错?

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

RewriteCond %{THE_REQUEST} ^.*/index.html
RewriteRule ^(.*)index.html$ http://www.cogxim.com/$1 [R=301,L]

1 个答案:

答案 0 :(得分:0)

以此指定将非www流量重定向到www

    RewriteEngine On 
    RewriteCond %{REQUEST_FILENAME} ^.*/index.html
    RewriteRule ^(.*)index.html$ http://www.cogxim.com/$1 [R=301,L]
    RewriteCond %{HTTP_HOST} ^cogxim.com
    RewriteRule (.*) http://www.cogxim.com/$1 [R=301,L
相关问题