咨询热线:4006-75-4006

售前:9:00-23:30    备案:9:00-18:00    技术:7*24h

IIS框架下中文域名无法正常进行URL地址重定向处理方法

2015-10-30 10:35:21 3060次

    通常我们在IIS下设置的URL重定向是通过在web更目录下生成web.conf的文件进行重定向的操作。通常我们会利用加入代码的形式,更新需要的部分来达到我们的目的。但是在我们长期的管理中,我们发现当我们对中文形式的域名操作时候,重定向功能会出现无法跳转的结果,而且其中也不会出现错误的提示。

    经过多次发现和推理总结出,这个可能是跟web.conf不支持中文挂钩,谁叫windows是外国人的呢。

    所以在我们如果想把自己的中文域名进行跳转,那只能采用中文域名转化为pinycode码进行重定向的操作。

例如我们在web.conf文件中输入中文域名301进行中文操作,代码如下

<configuration>
      <system.webServer>
        <rewrite>
            <rules>
            <rule name="301-蓝队.中国" stopProcessing="true">
            <match url=".*" />
            <conditions>
            <add input="{HTTP_HOST}" pattern="^蓝队.中国$" />
            </conditions>
            <action type="Redirect" url="http://www.landui.com/{R:0}" 
              redirectType="Permanent" />
            </rule>
            </rules>
        </rewrite>
      </system.webServer>

</configuration>

但是当我们进行浏览器打开后往往出现

或者没有找到的情况。

不过如果我们将他进行pinycode码转换后蓝队.中国” 转换后:“xn--fx1al76a.xn--fiqs8s”
<configuration>

      <system.webServer>
        <rewrite>
            <rules>
            <rule name="301-蓝队.中国" stopProcessing="true">
            <match url=".*" />
            <conditions>
            <add input="{HTTP_HOST}" pattern="^xn--fx1al76a.xn--fiqs8s$" />
            </conditions>
            <action type="Redirect" url="http://www.landui.com/{R:0}" 
              redirectType="Permanent" />
            </rule> 
            </rules>
        </rewrite>
      </system.webServer>

</configuration>

这样,我们的url就可以正常跳转了。





首页
最新活动
个人中心