我有一个web api项目,项目 project structure的根目录中有文档(swagger)文件夹 在本地我可以查看路线像 http://localhost:9941/documentation/ 但是当我部署这个项目时,在部署中通过相同的url将其给予我
在本地我可以查看路线像
http://localhost:9941/documentation/
但是当我部署这个项目时,在部署中通过相同的url将其给予我的权限错误
http://mywebsite.azurewebsites.net/documentation/
错误信息:
You do not have permission to view this directory or page.
网络配置
<system.web> <authentication mode="None" /> <compilation debug="false" targetFramework="4.5" /> <httpRuntime targetFramework="4.5" /> </system.web>这是由于您的应用程序部署不完整.重新启动或删除并重新上传应解决此问题.