0

ページは機能していますが、以下のような状況の場合:

www.mysite.com
www.misite.com/
www.miste.com/index.php

www.mysite.com/home/ にリダイレクトする必要があります (これをユーザーに表示します)。

.htaccess を使用してそれを行うことはできますか?

私の .htaccess ファイル:

RewriteEngine On
Options +FollowSymLinks

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

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !index.php
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1/ [L,R=301]

RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^(.*)$ index.php?par=$1

ErrorDocument 404 index.php
4

1 に答える 1

1

質問にタイプミスがないと仮定します。

www.mysite.com
www.misite.com/
www.miste.com/index.php

そして、3つのドメインすべてが同じドキュメントルートを指しています。あなたはこのようなものが欲しいです:

RewriteCond {HTTP_HOST} ^(www\.)?(mysite|misite|miste)\.com$ [NC]
RewriteRule ^(index\.php)?$ http://www.mysite.com/home/ [L,R=301]
于 2012-09-20T16:19:57.487 に答える