0

我想通过 moderewrite 将我的联系页面重定向到 https 槽 .htaccess。

这是我的联系页面的网址: http ://mywebsite.com/index.php?route=information/contact(这是 opencart 网站)。

将其重定向到 https 的正确重写规则是哪一个?

4

2 回答 2

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 回答
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 回答