Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firefox redirects localhost to HTTPS

Tags:

https

firefox

People also ask

How do I get rid of redirects in Firefox?

Look for the "Accessibility" section. Click the box beside "Warn Me When Web Sites Try to Redirect or Reload the Page" to deselect the option.

Does Firefox automatically use HTTPS?

We are excited to announce that, starting in Firefox 91, Private Browsing Windows will favor secure connections to the web by default. For every website you visit, Firefox will automatically establish a secure, encrypted connection over HTTPS whenever possible.


This happened to me after I worked on a site that used https and then tried switching back to one that does not.

Unfortunately, the accepted answer did not work for me. What I needed to do was:

  1. Open the Firefox History (ctrl+h)
  2. Find the page (127.0.0.1:3000, in my case)
  3. Right-click it and choose the last option: "Forget About This Site"

If you use localhost - with our without port - to access your page, then you will notice that localhost does not show up in your history. This makes it impossible to access the "Forget About This Site" option.

Fear not! You can work around that issue.

  1. Visit your site using 127.0.0.1 instead of localhost. So, for example, localhost:3000 becomes 127.0.0.1:3000.
  2. Now open the Firefox History (ctrl+h)
  3. Find the page (127.0.0.1), right-click, and "Forget About This Site"
  4. Now, access localhost and you will find that it works again. This is because forgetting about 127.0.0.1 cleared data for both 127.0.0.1 as well as for localhost.

So, here is my experience. I had the same issue.

At first : try in private mode. If you dont have the problem, do this :

When you open a new tab, you have to go to the Firefox configuration ("about:config") you check "I'll be careful I promise". Then in the search field you type autofill, you have to set browser.urlbar.autofill to false and if it still doesn't work you can delete the history, it should fix it. It worked for me.

I think the problem comes from the fact that I opened once localhost in https so the browser wants to do it every time.


In their last update, Chrome and Firefox browsers now redirect all domains with the pattern *.dev and *.foo to https. I found a solution for Firefox but, haven't yet found a solution for Chrome.

for Firefox

Visit the address about:config
Search for the parameter network.stricttransportsecurity.preloadlist and change it's value to false

Since this question refers to a localhost, alternative solutions involve:

  • Change your URLs and use new domains .
  • Modify the hosts file, If you point on IP addresses or virtual hosts, you can modify your hosts file to use local domains
  • Or, Use SSL, you can choose to activate SSL on your web server.

Source: https://tutoref.com/how-to-prevent-firefox-and-chrome-from-forcing-dev-and-foo-domains-to-use-https/


I'm running MAMP on OSX with default ports (http://localhost) and what worked for me was changing this preference to false on about:config:

browser.fixup.fallback-to-https

I tried clearing History, Site Preferences, changing browser.urlbar.autofill and network.stricttransportsecurity.preloadlist, disabling all extensions, but none of these worked.


The solution that worked for me:

  1. Go to about:config
  2. Look for network.stricttransportsecurity.preloadlist and set it to "false"
  3. Enjoy

To connect to a Pluto.jl instance, the only workaround so far was to launch in a private window:

firefox -new-instance -P Pluto --private-window http://localhost:1237

Finns answer fixed it once, but subsequent calls timed out.

Comments left in a relevant bug report.