htaccess:排除 RewriteCond 中的某些域

发布于 2024-11-01 05:38:57 字数 309 浏览 1 评论 0原文

这是我的 .htaccess 代码 因此,如果用户仅输入 domain.com 将被重定向到 www.domain.com

RewriteBase /
RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]

我现在的问题是我有一个指向相同域路径的新域 因此,即使新域名也会“透明地”重定向到domain.com...

我如何从该规则中排除某些域名?

谢谢!

this is my .htaccess code
so if the user type just domain.com will be redirected to www.domain.com

RewriteBase /
RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]

my problem now is that i have a new domain pointing to the same domain path
so even the new domain is redirected "transparently" to domain.com...

how can i exclude some domain name from that rule?

thanks!

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

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

发布评论

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

评论(1

离旧人 2024-11-08 05:38:57

您可以尝试使重写通用,以便所有不以 www 开头的请求都被重定向,但位于正确/请求的域上。

RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://www.%1/$1 [L,R=301]

或者,您可以检查域是否以 domain.com 开头:

RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com [L,R=301]

希望这会有所帮助。

You could try making the rewrite generic, so all requests that are not starting with www are redirected, but on the correct/requested domain.

RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://www.%1/$1 [L,R=301]

Or, you can check instead for if the domain starts with domain.com:

RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com [L,R=301]

Hopefully this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文