我正在尝试向AppHarbor部署一个网站。当然,我必须禁用预编译和其他东西,但appharbor构建它并将其部署到http://nitelists.apphb.com/。
但是如果你输入,你会看到一个forbiden访问错误,不知道为什么。 (请注意,我使用的是与WebMatrix集成的SQL lite数据库)
我是否必须更改web.config文件的某些内容才能使其正常工作?这是实际的文件内容:
<?xml version="1.0" encoding="UTF-8"?>
<configuration >
</configuration>
答案 0 :(得分:1)
我的web.config文件看起来像这样
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
</configuration>