简体   繁体   中英

ASP.NET Show Full Url in Browser for the Default Page

When I set the Default Document in IIS to display my Default page ( default.aspx ), and access it using the host header I implemented; it only shows the host header address and not the full page address in the browser.

For example:

Host header: http://mysite IIS default document: /PageContainer/default.aspx

when I enter http://mysite through the browser; it opens the http://mysite/PageContainer/default.aspx but shows only the http://mysite address in the browser address bar.

How can I change it to show the full url like http://mysite/PageContainer/default.aspx in the browser address bar either.

您可以为添加重定向

http://mysite --> http://mysite/PageContainer/default.aspx

You could add a default.aspx page in the root (ie http://mysite/default.aspx ) with the following code and make 'default.aspx' the default document:

<html>
<head>
<meta http-equiv="refresh" content="0;URL=/PageContainer/default.aspx" />
</head>
<body></body>
</html>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM