针对 www 和非 www 规范问题的 301 重定向
我在 Microsoft IIS Web 服务器上有一个网站,并且我的网站由简单的静态 HTML 页面组成。
我需要解决我的规范问题,因为以下问题对我的页面均有效:
http://www.nurcanaral.com
http://nurcanaral.com
我希望上述所有地址仅重定向到 www。我所做的所有搜索都为我提供了 Apache 服务器的 .htaccess 解决方案。但这对我的服务器无效。我对服务器编码没有太多经验。有没有办法在页面代码本身中实现上述解决方案?
i have a web site on a Microsoft IIS Web Server and my web site consists of simple static HTML pages.
I need to solve my canonical problems as the following are all valid for my page:
http://www.nurcanaral.com
http://nurcanaral.com
I want all of the above addresses to be redirected to www only. All the searches I've done give me .htaccess solutions for Apache servers. But this is not valid for my server. I don't have much experience with server coding. Is there a way to achieve the above solution within the page code itself?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通常在 IIS 中为每个站点创建两个网站。例如:
第一个站点:
名称: 努卡纳拉尔
绑定:www.nurcanaral.com:80
第二个站点:
名称: nurcanaral-www
绑定:nurcanaral.com:80
对于第二个站点,您需要配置 HTTP 重定向选项,如下图所示。
https://i.sstatic.net/CfaSE.jpg
I usually create two websites in IIS for each site. For example:
First Site:
Name: nurcanaral
Bindings: www.nurcanaral.com:80
Second Site:
Name: nurcanaral-www
Bindings: nurcanaral.com:80
For the second site, you will need to configure HTTP Redirect options as shown in image below.
https://i.sstatic.net/CfaSE.jpg