次のように、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}