隐藏使用.htaccess将http重定向到https

时间:2013-02-08 14:26:33

标签: .htaccess http redirect https

我需要将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}