将子域重定向到顶级域的文件夹
这就是我正在尝试做的事情。
当您输入 m.example.com 时,我希望用户被重定向到 example.com/m/,但我希望地址栏中的网址保留为 m.example .com 如果可能的话。
Here's what I'm trying to do.
When you type m.example.com I want users to be redirected to example.com/m/ but I would like the url in the address bar to remain m.example.com if possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 mod_rewrite 和 mod_proxy 来做到这一点:
You can do that with mod_rewrite and mod_proxy:
只需将子域的根目录设置为 example.com/m/ 即可。然后就没有重定向了。
Just set the subdomain's root dir to example.com/m/. Then there is no redirection.