請求url都是相似:/api/area/province.listhtml
咱們默認創建的Asp Net WebApi 服務時,若是請求url包含「.」,則返回404錯誤。 web
解決辦法:
須要在web.config文件中添加以下節點。api
<configuration> <system.webServer> <modules runAllManagedModulesForAllRequests="true"/> </system.webServer> </configuration>