2010-01-06 179 views

回答

2

您需要更改默認文檔列表的順序把index.htm的頂端,在IIS6這個屬性在IIS管理器中的網站上對話框的文件標籤上找到。

1

您需要在IIS中進行設置。在IIS管理器中,這將位於Documents選項卡下。

1

在default.aspx頁面中,如果您無權訪問IIS,請在代碼中將其寫入。

Response.Redirect("index.htm"); 
8

如果您沒有訪問IIS,你在IIS 7(Windows Server 2008中)主持,你可能希望把這個變成你的web.config文件:

<system.webServer> 
    <defaultDocument> 
     <files> 
      <clear/> 
      <add value="index.html" /> 
     </files> 
    </defaultDocument> 
</system.webServer> 

來源:How to add a default document with IIS7 web.config

+0

這是正確的解決方案,但小心如果您複製並粘貼它。 ''標籤中'/'和'>'之間有一個空格。由於它少於六個字符的修復程序,因此我無法對其進行編輯。 – JamesQMurphy 2015-02-12 15:40:23