www.domain.com/index.php
当我通过或访问我的网站时,出于 SEO 目的www.domain.com/index.html
,它需要重定向到。www.domain.com
如何在 .htaccess 中配置它?
www.domain.com/index.php
当我通过或访问我的网站时,出于 SEO 目的www.domain.com/index.html
,它需要重定向到。www.domain.com
如何在 .htaccess 中配置它?
通过启用 mod_rewrite 和 .htaccess httpd.conf
,然后将此代码放在您.htaccess
的DOCUMENT_ROOT
目录下:
DirectoryIndex index.html index.php
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteRule ^index\.(html?|php)$ / [L,R=301,NC]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} /(index)|(home)(..{3,4})?$ [NC]
RewriteRule ^([^/]+/)+ http://www.example.com/$1? [R=301,L]