16

現在、サーバー上の同じフォルダーにアクセスする 2 つのドメインがあります。metrikstudios.com と ziced.com です。

http://metrikstudios.com から入るユーザーを https://metrikstudios.com にリダイレクトし、 http ://ziced.com から入るユーザーをhttps://ziced.comにリダイレクトしないようにしたい.

私は現在これを.htaccessに持っています

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

ありがとう

4

4 に答える 4

36

別の RewriteCond を追加するだけで、ホストが metrikstudios.com であるかどうかを確認できます。

RewriteCond %{HTTP_HOST} ^metrikstudios\.com [NC]

次のようになります。

RewriteEngine On
RewriteCond %{HTTP_HOST} ^metrikstudios\.com [NC]
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI}
于 2012-08-06T20:36:05.723 に答える