仅当以下查询字符串参数不存在时,我才想将 HTTPS 重定向到 HTTP :
https://www.example.com/index.php?p=login
https://www.example.com/index.php?p=signup
https://www.example.com/index.php?p=cart
https://www.example.com/index.php?p=one_page_checkout
也就是说,除这些之外的任何查询字符串都应从 HTTPS 重定向到 HTTP。我想确保只有我的结帐路径是 HTTP。
这可以简单地使用.htaccess
with RewriteCond
and来完成RewriteRule
吗?