0
問題在標題中 - 我有本地主機上的wcf服務:8001但我希望它也可以從本地主機訪問:8001 /名稱/第二名/ 是嗎?可能?IIS - 重定向從本地主機:8001 /名稱/ secondName /到wcf服務url
問題在標題中 - 我有本地主機上的wcf服務:8001但我希望它也可以從本地主機訪問:8001 /名稱/第二名/ 是嗎?可能?IIS - 重定向從本地主機:8001 /名稱/ secondName /到wcf服務url
你可以通過URL重寫來做到這一點。您需要添加此重寫規則:
<rule name="Rewrite /name/secondName" stopProcessing="true">
<match url="^name/secondName(.*)" />
<action type="Rewrite" url="{R:1}" />
</rule>