使用 .htaccess Anything.DomainName.com 重定向到 DomainName.com/xx/test.html
我想使用 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试这个:
条件应该匹配任何非空子域。
如果您想传递有关哪个子域被访问到重定向站点的信息,那么您可以将 %1 (这是 RewriteCond 中的第一个正则表达式匹配)添加到重定向中,例如
You might try this one:
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.