文件访问的子域重写规则不会影响主站点文件

发布于 2024-12-08 10:37:45 字数 484 浏览 0 评论 0原文

我已经设置了虚拟子域。我想让 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 技术交流群。

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

发布评论

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

评论(2

友欢 2024-12-15 10:37:45

这就是您可以根据个人情况进行操作的方法。

RewriteCond %{HTTP_HOST} ^abc\.domain\.com$ [NC]
RewriteRule (.*)$ http://www.domain.com/file.php?var=abc [L]

RewriteCond %{HTTP_HOST} ^def\.domain\.com$ [NC]
RewriteRule (.*)$ http://www.domain.com/file.php?var=def [L]

This would be how you could do them on an individual basis.

RewriteCond %{HTTP_HOST} ^abc\.domain\.com$ [NC]
RewriteRule (.*)$ http://www.domain.com/file.php?var=abc [L]

RewriteCond %{HTTP_HOST} ^def\.domain\.com$ [NC]
RewriteRule (.*)$ http://www.domain.com/file.php?var=def [L]
无人问我粥可暖 2024-12-15 10:37:45

解决方案是这样的

RewriteCond %{HTTP_HOST} !^www\.domain\.com$ [NC]
RewriteCond %{HTTP_HOST} ^(.*)\.domain\.com$ [NC]
RewriteCond %{QUERY_STRING}  ^$
RewriteRule ^(.*)$   http://www.domain.com/index.php?subdomain=%1 [L]


RewriteCond %{HTTP_HOST} !^www\.domain\.com$ [NC]
RewriteCond %{HTTP_HOST} ^(.*)\.domain\.com$ [NC]
RewriteCond %{QUERY_STRING}  !^$
RewriteRule ^(.*)$   http://www.domain.com%{REQUEST_URI}?%{QUERY_STRING}&subdomain=%1 [L]

The solution is something like this

RewriteCond %{HTTP_HOST} !^www\.domain\.com$ [NC]
RewriteCond %{HTTP_HOST} ^(.*)\.domain\.com$ [NC]
RewriteCond %{QUERY_STRING}  ^$
RewriteRule ^(.*)$   http://www.domain.com/index.php?subdomain=%1 [L]


RewriteCond %{HTTP_HOST} !^www\.domain\.com$ [NC]
RewriteCond %{HTTP_HOST} ^(.*)\.domain\.com$ [NC]
RewriteCond %{QUERY_STRING}  !^$
RewriteRule ^(.*)$   http://www.domain.com%{REQUEST_URI}?%{QUERY_STRING}&subdomain=%1 [L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文