.htaccess / 重定向到 https://www.example.com 和虚拟文件夹访问
我有一个域名 example.com。我希望每当键入以下内容之一时,用户都会被重定向到 https://www.example.com
:
http://example.com
http: //www.example.com
https://example.com
我还需要重定向访问 /asdf
(或 /asdf/< /code>) 到
/index.php?folder=asdf
。
我发现了一些执行第一部分的代码示例,但关于它们的有效性始终存在争议。
编辑:(需要更多帮助!:))
I have a domain example.com. I want users to be redirected to https://www.example.com
whenever one of the following is typed:
http://example.com
http://www.example.com
https://example.com
I also need to redirect people accessing /asdf
(or /asdf/
) to /index.php?folder=asdf
.
I found some examples of code doing the first part, but there was always a debate about their effectiveness.
Edit: (need some more help! :))
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试这些 mod_rewrite 规则:
但我建议您只允许一个 URL表示法,有或没有尾部斜杠的表示法。
Try these mod_rewrite rules:
But I recommend you to just allow one URL notation, the one with or without the trailing slash.