WebAPI中路由參數中包含字符-點「.」

請求url都是相似:/api/area/province.listhtml

咱們默認創建的Asp Net WebApi 服務時,若是請求url包含「.」,則返回404錯誤。 web

解決辦法:
須要在web.config文件中添加以下節點。api

<configuration> 
    <system.webServer>

        <modules runAllManagedModulesForAllRequests="true"/>

    </system.webServer>
</configuration>
相關文章
相關標籤/搜索