0

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

1 回答 1

0

我会看看这两篇文章,他们似乎有你的答案。:)

http://joseph.randomnetworks.com/2004/07/22/redirect-to-ssl-using-apaches-htaccess/

https://serverfault.com/questions/116206/how-do-i-use-htaccess-to-always-redirect-from-http-to-https

于 2013-02-08T14:35:41.030 回答