2
我要定義控制器和動作添加到URL基本URL重寫 - 添加默認頁域
localhost:6473 -> localhost:6473/Beta/Index
與URL在Web.config中重寫,但由於某種原因,這是行不通的
<rewrite>
<rules>
<rule name="Beta_Local" stopProcessing="true">
<match url="(localhost*)" ignoreCase="true" />
<conditions>
<add input="{HTTP_HOST}" pattern= "^localhost:[0-9]{4}$" negate="true"/>
</conditions>
<action type="Redirect" url="{R:0}/Beta/Index" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
感謝的。它確實有效。做路由已經太晚了,因爲路由引擎添加Beta和Index對於最終用戶來說是不可見的,但我希望確切的URL域/ Beta/Index作爲默認值始終可見(對於谷歌分析) – Andriy