IIS 网络服务器托管

问题描述 投票:0回答:1

This is the asp.NET webapp which i need to get after publishing from visual studio

But after hosting the webapp in IIS server and when i browse i get the localhost like this

asp.net localhost iis-7
1个回答
0
投票

打开IIS管理器,单击您的站点,在IIS下有一个标有“目录浏览”的图标。双击它,然后单击“操作”下的“禁用”。或者通过将以下内容粘贴到 web.config 中来禁用目录浏览:

<system.webServer>
  <directoryBrowse enabled="false" />
</system.webServer>

然后您需要将

SignUp.aspx
设置为默认文档,请参考以下步骤:

  1. 在 IIS 管理器中,单击服务器名称节点,然后滚动找到“默认文档”图标。
  2. 双击默认文档。
  3. 在操作窗格中,单击添加。
  4. 在添加默认文档对话框中,键入
    SignUp.aspx
  5. 单击“确定”。
© www.soinside.com 2019 - 2024. All rights reserved.