我需要编写一个仅将主页强制为非 ssl 的 htaccess
所以如果你要去 https://www. 123.com 或https://123.com它将重定向/强制它转到 http://www。123.com 或http://123.com。
我只希望在主页上进行此更改。
我需要编写一个仅将主页强制为非 ssl 的 htaccess
所以如果你要去 https://www. 123.com 或https://123.com它将重定向/强制它转到 http://www。123.com 或http://123.com。
我只希望在主页上进行此更改。
我没有要测试的 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>
RewriteCond %{SERVER_PORT} 443 RewriteRule ^$ http://eosworldwide.com/ [L,R=301]