我想將我的聯繫頁面重定向到https槽.htaccess和moderewrite。.htaccess僅將特定頁面重定向到https,並使用重寫規則
這是我的聯繫頁面的網址: http://mywebsite.com/index.php?route=information/contact(這是opencart網站)。
這將是正確的重寫規則重定向到https?
我想將我的聯繫頁面重定向到https槽.htaccess和moderewrite。.htaccess僅將特定頁面重定向到https,並使用重寫規則
這是我的聯繫頁面的網址: http://mywebsite.com/index.php?route=information/contact(這是opencart網站)。
這將是正確的重寫規則重定向到https?
嘗試:
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^(/index.php?route=information/contact) https://mywebsite.com$1 [L,R=301]
(OP詢問如何使用「mod_rewrite的」做)
只是一個簡單的 「這對於」 重定向:
Redirect 301 http://mywebsite.com/index.php?route=information/contact https://mywebsite.com/index.php?route=information/contact