文件访问的子域重写规则不会影响主站点文件
我已经设置了虚拟子域。我想让 htaccess 实现以下
流程 www.domain.com
它应该调用索引文件,但对于子域
abc.domain.com
重写规则应该像
RewriteRule www.domain.com/index.php?var=abc
我的意思是它应该(在 HTACCESS 中)将子域作为参数传递给索引文件
,对于其他文件请求,例如
abc.domain.com/file.php
子域应该是像 www.domain.com/file.php?var=abc
一样重写
我的意思是重写规则像
RewriteRule www.domain.com/file.php?var=abc
I have set up virtual subdomain. and i want to make htaccess to achive the following flow
For
www.domain.com
it should call the index file but for the subdomain
abc.domain.com
The rewrite rule should be like
RewriteRule www.domain.com/index.php?var=abc
i mean it should (in HTACCESS) pass the subdomain to the index file as an argument
and for the Other file requests like
abc.domain.com/file.php
The subdomain should be rewritten like www.domain.com/file.php?var=abc
I mean the Rewrite rule like
RewriteRule www.domain.com/file.php?var=abc
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是您可以根据个人情况进行操作的方法。
This would be how you could do them on an individual basis.
解决方案是这样的
The solution is something like this