0

moderewrite を使用して、連絡先ページを .htaccess 経由で https にリダイレクトしたいと考えています。

これは私の連絡先ページの URL です: http://mywebsite.com/index.php?route=information/contact (これは opencart Web サイトです)。

これを https にリダイレクトするための正しい書き換えルールはどれですか?

4

2 に答える 2

1

試す:

RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(/index.php?route=information/contact) https://mywebsite.com$1 [L,R=301]

(OPは「mod_rewrite」でそれを行う方法を尋ねました)

于 2012-11-19T15:20:15.657 に答える
1

シンプルな「this for that」リダイレクト:

Redirect 301 http://mywebsite.com/index.php?route=information/contact https://mywebsite.com/index.php?route=information/contact
于 2012-11-19T15:12:20.300 に答える