簡體   English   中英

asp.net中如何將主頁設為默認頁

[英]How to make home page as default page in asp.net

如何在 asp web.config文件中設置默認主頁。
我已經寫了這段代碼:

<urlMappings>
  <add url="/" mappedUrl="Home.aspx"/>
  <add url="Default.aspx" mappedUrl="Home.aspx"/>
</urlMappings>     

也試過這個

<defaultDocument>
  <files>
    <add value="Home.aspx" />
  </files>
</defaultDocument>

但我想它不起作用。 當我鍵入www.example.com時,它說目錄列表已禁用,但不會重定向到www.example/Home.aspx

我不想啟用目錄列表,但如果有人鍵入www.example.com ,他應該被發送到www.example.com/Home.aspx

更改 iis 的 webconfig 7.

<system.webServer>
      <defaultDocument>
        <files>
          <clear />
          <add value="CreateThing.aspx" />
        </files>
      </defaultDocument>
    </system.webServer>

查看此帖子: 在 Asp.net 中設置默認頁面

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM