I have hosted my website as an application on IIS and I can access it by http:\localhost\myApp\default.aspx but not with my IP.
I have another application hosted in the same machine which can be accessible in both localhost and IP address.
Error message from different browsers:
IE: Internet Explorer cannot display the webpage
Firefox: Firefox can't establish a connection to the server at 192.168.**
Chrome: This webpage is not available
I can access all other pages except default.aspx.
What default.aspx does?
It just loads a flash file.
What happens when I browse http:\localhost\myApp\default.aspx?
It redirects to
https:\localhost\myApp\default.aspx
Note the s above.
Few other detais:
Port 80is enabled.- Read permission is there for
default.aspx. - The website is hosted as application under
Default Web Siteand thehttpbinding isAll Unassigned. - Created a separate pool with
Integratedpipeline mode.
What might be the cause for this issue?
