I want to add defined Controller and Action to basic URL
localhost:6473 -> localhost:6473/Beta/Index
with the URL rewriting in Web.config but in some reason it doesn't work
<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>