使用 .htaccess 将子域指向子文件夹
我的虚拟主机会自动将所有对 *.mydomain.com 的请求转发到顶级域 mydomain.com。
我想将任何子域映射到我的顶级域上的特定文件夹。即 sub.example.com 必须映射到 example.com/someFolder (无需在地址栏中进行更改)。
在网上挖掘之后,我想出了这个:
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} ^(www\.)?[^.]+\.example\.com.*$
RewriteRule (.*) http://example.com/myfolder/$1 [L]
这似乎工作得很好,除了一个问题:当我转到 URL sub.example.com 时,地址栏中的 URL 更改为 example.com/myfolder 。但是,当我执行类似 sub.example.com/login 的操作时 - 这会正确映射到“example.com/sub/login”,而无需更改地址栏。非常感谢任何帮助!
My webhost automatically forwards all requests to *.mydomain.com to the toplevel domain mydomain.com.
I wanted to map any subdomain to a specific folder on my toplevel domain. i.e. sub.example.com must be mapped to example.com/someFolder (without change in the address bar).
After digging around on the net, I came up with this:
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} ^(www\.)?[^.]+\.example\.com.*$
RewriteRule (.*) http://example.com/myfolder/$1 [L]
This seems to work well, except for one problem: When I go to the URL sub.example.com, the URL in the address bar changes to example.com/myfolder . But, when I do something like sub.example.com/login - this maps to "example.com/sub/login" properly without the change in the address bar. Any help greatly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需要进行一些小的更改:
在告诉 Apache 发送重定向标头而不是正确的服务器端重写的规则中删除 http:// 。
only small change needed:
stripped out http:// at the rule which tells Apache to send a Redirect header instead of proper server-side rewrite.