将子域重定向到顶级域的文件夹

发布于 2024-08-04 22:35:51 字数 147 浏览 2 评论 0原文

这就是我正在尝试做的事情。

当您输入 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

妄想挽回 2024-08-11 22:35:51

您可以使用 mod_rewrite 和 mod_proxy 来做到这一点:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^m\.example\.com$
RewriteRule ^ http://example.com/m%{REQUEST_URI} [L,P]

You can do that with mod_rewrite and mod_proxy:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^m\.example\.com$
RewriteRule ^ http://example.com/m%{REQUEST_URI} [L,P]
毁梦 2024-08-11 22:35:51

只需将子域的根目录设置为 example.com/m/ 即可。然后就没有重定向了。

Just set the subdomain's root dir to example.com/m/. Then there is no redirection.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文