Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
誰でも助けることができます。次のようなリダイレクト ルールを作成する必要があります。
URL /administrator が含まれていない限り、すべての HTTPS トラフィックを HTTP にリダイレクトします。
RewriteEngine on RewriteCond %{REQUEST_URI} !^administrator/ RewriteRule .? http://www.site2.com%{REQUEST_URI} [R=301,L]
ありがとう、
HTTPS かどうかを確認する条件を含める必要があります。
RewriteEngine on RewriteCond %{HTTPS} on RewriteCond %{REQUEST_URI} !^administrator/ RewriteRule .? http://www.site2.com%{REQUEST_URI} [R=301,L]