我想在一个应用程序中使用子域名一段时间。基本上,不是像这样设置多个子站点......
http://example.com/shop1.aspx?name=john/
......我想要这个......
我想要使用URL重写虚拟动态子域名 我不知道该怎么做。
----------- UPDATE ------
通过互联网搜索后,我得到了以下code.it重定向完美但不重写URL
我的网页是 - http://domain/mySpace.aspx?una=sunil
<rule name="Redirect to Subdomains" stopProcessing="true">
<match url="^mySpace.aspx$" />
<conditions>
<add input="{QUERY_STRING}" pattern="^una=(.+)$" />
</conditions>
<action type="Rewrite" url="http://{C:1}.{HTTP_HOST}"
appendQueryString="false" />
</rule>
但仍然无法解决它。