0
我想在web.config中創建一個重寫規則,它將採用諸如http://example.org/MySite之類的URL並將它們重定向回根網站,例如http://example.org。web.config重寫路徑規則
它也應該忽略特定的文件夾,如http://example.org/css或http://example.org/js。
<rewrite>
<rules>
<rule name="enquiry" stopProcessing="true">
<match url="http://example.org/^$" /> <!-- Wrong !! ->
<action type="Rewrite" url="/" />
</rule>
</rules>
</rewrite>