从 www 到非 www 的通用重定向

发布于 2024-12-15 10:39:29 字数 373 浏览 0 评论 0原文

我在 IIS 6.0 服务器上使用 IIRF,使用以下代码将用户从网站的“www”版本重定向到“非 www”版本:

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

但是,我必须在根目录中创建一个包含此代码的文件网站,我还有很多不同的网站和域可以将其添加到文件中。有没有什么方法可以使上面的代码变得通用,这样即使文件仍然会在每个网站文件夹中创建(因为这很容易使用内容管理系统来完成),但我实际上不必指定域名称,它仍然会将用户从“www”重定向到“非www”?

谢谢马克

I'm using IIRF on an IIS 6.0 server to redirect users from a "www" version of the site to a "non-www" version using the following code:

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

However, I have to create a file with this code in the root of the website, and I have quite a lot of different websites and domains to add this to file too. Is there any way of making the code above generic, so that even though the file will still be created in each website folder (as this is easy to do with the content management system), that I don't actually have to specify the domain name and it would still redirect the user from "www" to "non-www"?

Thanks

Mark

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

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

发布评论

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

评论(2

双手揣兜 2024-12-22 10:39:29

这就是我用的...

RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]

This is what I use...

RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
巾帼英雄 2024-12-22 10:39:29

我正在使用这个:

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

I'm using this one:

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