web.config设置域名绑定子目录

[code]
<rule name="z1988.com">
<match url="^.*$" ignoreCase="false" />
<conditions>
<add input="{HTTP_HOST}" pattern="^www.z1988.com$" />
</conditions>
<action type="Rewrite" url="z1988/{R:0}" appendQueryString="true" />
</rule>
[/code]

阅读剩余
THE END