moderewrite を使用して、連絡先ページを .htaccess 経由で https にリダイレクトしたいと考えています。
これは私の連絡先ページの URL です: http://mywebsite.com/index.php?route=information/contact (これは opencart Web サイトです)。
これを https にリダイレクトするための正しい書き換えルールはどれですか?
moderewrite を使用して、連絡先ページを .htaccess 経由で https にリダイレクトしたいと考えています。
これは私の連絡先ページの URL です: http://mywebsite.com/index.php?route=information/contact (これは opencart Web サイトです)。
これを https にリダイレクトするための正しい書き換えルールはどれですか?
試す:
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(/index.php?route=information/contact) https://mywebsite.com$1 [L,R=301]
(OPは「mod_rewrite」でそれを行う方法を尋ねました)
シンプルな「this for that」リダイレクト:
Redirect 301 http://mywebsite.com/index.php?route=information/contact https://mywebsite.com/index.php?route=information/contact