使用 .htaccess Anything.DomainName.com 重定向到 DomainName.com/xx/test.html

发布于 2024-11-01 17:55:39 字数 399 浏览 0 评论 0原文

我想使用 .htaccess 将 WildChar.DomainName.com 重定向到 DomainName.com/xx/test.html

.htaccess 代码是

Options +FollowSymLinks

<IfModule mod_rewrite.c>

RewriteEngine on

RewriteCond %{HTTP_HOST} ^\.DomainName\.com
RewriteRule ^(.*)$ /xx/index.html [L]

</IfModule>

[更新] 由于某种原因我无法发布到 superuser.com,所以请不要关闭/移动这个问题

谢谢 让

I want to redirect WildChar.DomainName.com to DomainName.com/xx/test.html using .htaccess

.htaccess code is

Options +FollowSymLinks

<IfModule mod_rewrite.c>

RewriteEngine on

RewriteCond %{HTTP_HOST} ^\.DomainName\.com
RewriteRule ^(.*)$ /xx/index.html [L]

</IfModule>

[update] I am unable to post to superuser.com for some reason, so please do not close / move this question there

Thanks
Jean

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

终遇你 2024-11-08 17:55:39

您可以尝试这个:

RewriteCond %{HTTP_HOST} ^(.+)\.domainname\.com
RewriteRule .* http://domainname.com/xx/index.html [R]

条件应该匹配任何非空子域。

如果您想传递有关哪个子域被访问到重定向站点的信息,那么您可以将 %1 (这是 RewriteCond 中的第一个正则表达式匹配)添加到重定向中,例如

RewriteRule .* http://domainname.com/xx/index.html?from_subdomain=%1 [R]

You might try this one:

RewriteCond %{HTTP_HOST} ^(.+)\.domainname\.com
RewriteRule .* http://domainname.com/xx/index.html [R]

The condition should match any non-empty subdomain.

If you want to pass the information about which subdomain was accessed to the redirected site, then you can add %1 (which is the first regex match from the RewriteCond) to the redirect, e.g.

RewriteRule .* http://domainname.com/xx/index.html?from_subdomain=%1 [R]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文