我需要将 http 页面重定向到 https 并使其隐藏,例如:
http://www.example1.com -> https://www.example2.com
所以 example1 在 URL 栏中始终可见,而 example2 是隐藏的。
这样的事情会起作用吗?如果不是,我应该改变什么?
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/index.html
RewriteRule ^index.html https://www.example2.com [L]
RewriteCond %{HTTPS} on
RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI}