关于web.config二级域名绑定二级目录的问题 推荐热议 悬赏3元 已结束
我的web.config代码:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="301Redirect" stopProcessing="true">
<match url="(.*)" />
<conditions logicalGrouping="MatchAny">
<add input="{HTTP_HOST}" pattern="^abc.com$" />
</conditions>
<action type="Redirect" url="http://www.abc.com/{R:0}" redirectType="Permanent" />
</rule>
<rule name="Pc_m">
<match url="^.*$" ignoreCase="false" />
<conditions>
<add input="{HTTP_HOST}" pattern="^m.abc.com$" />
</conditions>
<action type="Rewrite" url="m/{R:0}" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
<system.web>
<customErrors mode="Off" />
<compilation debug="true" />
<identity impersonate="false" />
</system.web>
</configuration>
遇到的问题,打开二级域名下的目录如果加斜杠则正常,如不加斜杠会出错:
如:m.abc.com/123/ 打开后正常显示
如:m.abc.com/123 打开后则会301跳转到 m.abc.com/m/123/ 这个不存在的目录上
web.config 该如何写才能让不加斜杠的目录301跳转到加上斜杠的目录上呢?而二级域名下的.html等文件正常显示。