我想通过moderewrite将我的联系页面重定向到https trough .htaccess。
这是我的联系页面的网址: http://mywebsite.com/index.php?route=information/contact(这是opencart网站)。
将此重定向到https的正确重写规则是什么?
答案 0 :(得分:1)
只是一个简单的“this for that”重定向:
Redirect 301 http://mywebsite.com/index.php?route=information/contact https://mywebsite.com/index.php?route=information/contact
答案 1 :(得分:1)
尝试:
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(/index.php?route=information/contact) https://mywebsite.com$1 [L,R=301]
(OP询问如何使用“mod_rewrite”执行此操作)