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

これら2つの記事を見てみましょう。あなたの答えがあるようです。:)

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 に答える