0

ホームページのみを強制的に非 SSL にする htaccess を作成する必要があります。

https://www. 123.com またはhttps://123.comリダイレクト/強制的に http://www. 123.com またはhttp://123.com

この変更はホームページでのみ行います。

4

2 に答える 2

1

テストするhttpsボックスはありませんが、これらのルールはあなたが望むことを実行するはずだと思います。

<IfModule mod_rewrite.c>

RewriteEngine On 

# Only rewrite if using HTTPS and that we're on the index page, then redirect to http
RewriteCond %{HTTPS} on
RewriteCond %{REQUEST_URI} ^/index.[a-z]+$ [NC]
RewriteRule .+ http://%{SERVER_NAME}%{REQUEST_URI} [R,QSA]

</IfModule>
于 2013-02-19T20:51:44.917 に答える
0

RewriteCond %{SERVER_PORT} 443 RewriteRule ^$ http://eosworldwide.com/ [L,R=301]

于 2013-02-20T17:51:40.193 に答える