从 www 到非 www 的通用重定向
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这就是我用的...
This is what I use...
我正在使用这个:
I'm using this one: