0

我知道这个论坛和其他资源上有相关的帖子,但我被困住了,无法继续。问题是当我将它发布到 FTP 服务器并导航到我收到错误的 url 地址时,我已经使用 VS2010 完成了一个网站。

以下是我做过的事情:

  • 我已启用 IIS 服务和静态内容
  • 我已将处理程序映射下的 staticFile 恢复为父级
  • 我已经在命令提示符下再次注册了 asp.net(regiis.exe 的东西)
  • 在 IIS 管理器中,我在站点下添加了我的网站地址,停止了默认网站并启动了我的网站。
  • 我已将我的网站添加到 classic.NET AppPool(集成和 v4.0)
  • 我已经启用了默认浏览..
  • 我已经完成了通常涵盖的所有建议..

这是我的 web.config:

<configuration>
    <system.webServer>
        <directoryBrowse enabled="true" showFlags="Date, Time, Size, Extension" />
        <defaultDocument>
             <files>
                 <add value="AnaSayfa.aspx" />
             </files>
        </defaultDocument>
    </system.webServer>
    <system.web>
        <compilation debug="true" targetFramework="4.0" />
    </system.web>
</configuration>

我在哪里犯错?

4

1 回答 1

0

以下帖子对同一问题有一些答案。

如何修复 Win Server 2k8 和 IIS7 上的 404.17 错误

希望有帮助。

编辑:我看到你已经尝试了其中的大部分......对不起。

于 2013-03-26T22:44:16.500 回答