我正在发布一个ASP.NET Web应用程序(这是VS2013的默认应用程序),它发布得很好。但是,当我访问我的应用程序时
我收到了“欢迎来到nginx”页面。但是http://someapp.apphb.com/Home有效。
我需要更改AppHarbor上的设置,还是需要更改我的WebApp?
答案 0 :(得分:0)
您可以在Web配置文件中设置默认文档
<configuration>
<system.webServer>
<defaultDocument>
<files>
<add value="index.html" />
</files>
</defaultDocument>
</system.webServer>
</configuration>