IIS重写模块具有两个域的规范URL

时间:2017-03-14 21:14:29

标签: url redirect iis url-rewriting windows-server-2012

我有一个网络服务器,我有两个名称为http://example.mxhttp://example.com.mx的域名都指向同一个网站服务器和根文件夹,我可以在两个域名中使用我的网站,目前我可以也使用www.,但这是我要删除的,我做了,我得到了这个web.config文件

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <handlers>
            <remove name="CGI-exe" />
            <add name="CGI-exe" path="*.exe" verb="*" modules="CgiModule" resourceType="File" requireAccess="Script" allowPathInfo="true" />
        </handlers>
        <rewrite>
            <rules>
                <rule name="CanonicalHostNameRule2" enabled="false">
                    <match url="(.*)" />
                    <conditions>
                        <add input="{HTTP_HOST}" pattern="^example\.com\.mx$" negate="true" />
                    </conditions>
                    <action type="Redirect" url="http://example.com.mx/{R:1}" />
                </rule>
                <rule name="CanonicalHostNameRule1" enabled="false">
                    <match url="(.*)" />
                    <conditions>
                        <add input="{HTTP_HOST}" pattern="^example\.mx$" negate="true" />
                    </conditions>
                    <action type="Redirect" url="http://example.mx/{R:1}" />
                </rule>
                <rule name="http a https" enabled="false" patternSyntax="ECMAScript" stopProcessing="true">
                    <match url="(.*)" />
                    <conditions>
                        <add input="{HTTPS}" pattern="^OFF$" />
                    </conditions>
                    <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="SeeOther" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>

但问题是,我转到http://example.mx它会将我发送到http://example.com.mx,并且它假设是这样的:

如果我转到http://www.example.mx重定向到http://example.mx

如果我转到http://www.example.com.mx重定向到http://example.com.mx

但是现在如果我转到http://www.example.mx它会重定向到http://example.com.mx并且我不想要这个,我需要在模式中改变什么?

1 个答案:

答案 0 :(得分:0)

您应该使用以下规则:

<rule name="CanonicalHostNameRule2">
    <match url="(.*)" />
    <conditions>
         <add input="{HTTP_HOST}" pattern="^www\.example\.com\.mx$"/>
    </conditions>
    <action type="Redirect" url="http://example.com.mx/{R:1}" />
</rule>
<rule name="CanonicalHostNameRule1">
    <match url="(.*)" />
    <conditions>
         <add input="{HTTP_HOST}" pattern="^www\.example\.mx$" />
    </conditions>
    <action type="Redirect" url="http://example.mx/{R:1}" />
</rule>