誰かが.htaccessでこのルールをリダイレクトする方法を知っていますか?
http://www.domain.com/index.php to http://domain.com
と
http://www.domain.com to http://domain.com
多くの戦車
誰かが.htaccessでこのルールをリダイレクトする方法を知っていますか?
http://www.domain.com/index.php to http://domain.com
と
http://www.domain.com to http://domain.com
多くの戦車
index.php
ドキュメントルートに移動したときに提供されるものだと推測しているので、それがリクエスト/index.php
されているものであり、URIの一部ではないことを明示的に確認する必要があります。 .
RewriteEngine On
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php
RewriteRule ^index\.php$ / [L,R=301]
次に、www から非 www へ:
RewriteCond %{HTTP_HOST} ^www\.domain\.com$ [NC]
RewriteRule ^(.*)$ http://domain.com/$1 [L,R=301]