Вопрос

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.

Это было полезно?

Решение

You could add a redirect for

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

Другие советы

You could add a default.aspx page in the root (i.e. 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>
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top