open url page on iis write only http://home
-
i have a web site there are lot of pages. one page name home.aspx when i run the site in localhost. write in : http://localhost/home.aspx i want to write http://home then open my home page how it is possible.
-
i have a web site there are lot of pages. one page name home.aspx when i run the site in localhost. write in : http://localhost/home.aspx i want to write http://home then open my home page how it is possible.
It shouldn't be possible. In order to display a webpage within a browser, it will have to know two things: 1) What page do you want 2) Where is that page "Home.aspx" is the name of the page. "Localhost" is the place where that page resides. "Localhost" is the domainname for your local computer. You could change that in the hosts-file, to get something like "http://mycomputer/home.aspx". You could also set the default page to "home.aspx", that's a setting in IIS. That would give you an address like "http://mycomputer/".