-1

我有一个网站hh-alrawi.com,问题是我每次发布网站的主页(Index.aspx)都没有出现,正确的网站网址是:http ://www.hh-alrawi.com/index .aspx,所以我想知道如何将主页名称放在域名(Index.aspx)之后总是在 URL 之后,我试图编辑我的网络配置,但它不起作用,我的网络配置:

<configuration>
  <system.web>

    <compilation debug="true" strict="false" explicit="true" targetFramework="4.0"/>

    <globalization requestEncoding="utf-8" responseEncoding="utf-8"/>

    <customErrors mode="On" defaultRedirect="Index.aspx">
      <error statusCode="404" redirect="Index.aspx" />
    </customErrors>

  </system.web>

  <system.webServer>

    <defaultDocument enabled="true">
      <files>
        <add value="Index.aspx" />
      </files>
    </defaultDocument>

  </system.webServer>    

</configuration>

请检查该网站以了解我所说的:),谢谢您的时间

4

2 回答 2

0

索引文件出现在您放置的任何位置。如果您将其放在 www 目录下,它将在您访问您的网站时自动显示。

于 2012-06-22T12:14:07.753 回答
0

使用 VS 发布您的网站并将其保存到文件系统中。我的托管 hostgator 可以选择上传 zip 文件,如果您也这样做,则压缩生成的文件并上传您网站根文件夹中生成的 zip/rar 或单独上传所有文件。告诉我它是否能解决你的问题。

于 2012-06-22T11:20:58.313 回答