Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't open local IIS site in IE or Edge

I have a site set up locally to do development on it and I have added it to iis and edited my host file with the url (see below). However, when I browse to the url I only get the "hmm, we can't reach this page" message.

The site works well in all other browsers including ie 11 so I was wondering if there are any settings to get local sites to work on edge.

I have been searching and could only find this related post, but the accepted answer on that makes no difference to me as the option is already checked on my edge. I have also tried the rebooting and flushing my dns but both didn't work.

I am using windows 10 and iis version 10 build 10240

Hosts File

# localhost name resolution is handled within DNS itself. #   127.0.0.1       localhost #   ::1             localhost 127.0.0.1       localhost loopback     # tried with and without this as thought it may have something to do with the loopback option in edge 127.0.0.1       test.local 127.0.0.1       dev.local 

Other links I have managed to find - no solutions though and the second one seems to suggest that we just use ie11:

Why does Microsoft Edge open some local websites, but not others, where the domain name is routed to 127.0.0.1 in hosts file

https://social.technet.microsoft.com/Forums/en-US/246298d8-52c1-4440-8d7f-05329d50e653/edge-browser-hosts-file?forum=win10itprogeneral

Update

Could it be something to do with the fact the site app pool is running under my work account instead of IIS or Network services (I cannot run under the latter 2 as they don't have the correct privileges to browse certain folders on my computer)

Update 2

For anyone coming to this who has tried everything below. I have found out it may be something to do with my windows 10 installation - My first install on the machine was windows 8. I then upgraded this to 8.1 and the up to 10 when that came out.

Having had issues with a few other things, I bit the bullet and did a completely fresh install of windows 10 and voila, everything works perfectly!

May be a bit drastic, but if all else fails...

Update 3

I recently got a new work machine and had this problem all over again, tried everything but still couldn't get it to load - turns out that the work proxy was causing the issue so if you try everything below and have a proxy, check the proxy is not blocking it

like image 503
Pete Avatar asked Sep 14 '15 11:09

Pete


People also ask

Why some sites are not opening in Edge browser?

You can reset new Edge in Edge Settings > Reset Settings, or for old Edge in Settings > Apps > Apps and Features, scroll down to Microsoft Edge, highlight it, choose Advanced Options, then Repair, or if that fails, Reset.

How do I view IIS sites locally?

To open the local site we have to use https://localhost/ or https://127.0.0.1/ in web browser to open the site. If our file name in the website is mysite. htm and is stored inside wwwroot and the complete path is like this c:\Inetpub\wwwroot\mysite.


1 Answers

The network is blocking loopback as a security measure in Windows 10, you need to make an exception by running this command for IE Edge in elevated privileges

CheckNetIsolation LoopbackExempt -a -n="Microsoft.MicrosoftEdge_8wekyb3d8bbwe"

like image 192
Sanjay10 Avatar answered Sep 29 '22 07:09

Sanjay10