現在、サーバー上の同じフォルダーにアクセスする 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}
ありがとう