Apache ReWrite 规则 &到&
已经执行此重写规则
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^.*$ https://www.%{SERVER_NAME}%{REQUEST_URI}
现在请求的 url
https://www.example.com/abc.php?a=&b=abc&c=def&d=0&e=1
是
https://www.example.com/abc.php?a=&b=abc&c=def&d=0&e=1
Already doing this rewrite rule
RewriteCond %{SERVER_PORT} !^443$
RewriteRule ^.*$ https://www.%{SERVER_NAME}%{REQUEST_URI}
Now the requested url is
https://www.example.com/abc.php?a=&b=abc&c=def&d=0&e=1
to
https://www.example.com/abc.php?a=&b=abc&c=def&d=0&e=1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在规则末尾添加 NE 标签(无转义):
add the NE tag at the end of the rule (No Escape):