How to clear cached redirects in Chrome

21

4

How do you clear cached redirects in Chrome?

I changed the DNS for a domain name and when I go to mydomain.com. Even though ping mydomain.com now shows it resolves to the correct IP, if I type in "mydomain.com" into Chrome, it still redirects to mydomain.com/404, which was a redirect automatically setup by the old webhost.

Clearing Chrome's browser cache has no effect, and Chrome seems to ignore /etc/hosts. I tried using a "different" URL, like mydomain.com?123, but Chrome still redirects to mydomain.com/404. Is this a bug or is there someway to clear whatever cache Chrome uses to save 301 redirects?

Cerin

Posted 2017-01-11T22:04:45.040

Reputation: 6 081

Answers

18

On desktop Chrome, deleting the last hour of browsing history works, so long as you've followed the redirect within the last hour.

On Android Chrome, visit chrome://net-internals, click the downward arrow at the top right corner, and choose 'clear cache'. That is the only solution I found for Chrome on Android.

Drew Noakes

Posted 2017-01-11T22:04:45.040

Reputation: 1 907

3On desktop - chrome://net-internals approach does work also. – Francis Martens – 2018-04-18T08:08:41.737

1In OS X when modifying hosts file Chrome just keeps redirecting despite clearing everything; even thought chrome://net-internals. It even redirects when using private browsing tabs, so it is probably not your regular cache issue... Any ideas? – LyK – 2018-05-08T22:57:51.270

Seems to be a known Chrome issue. Some solutions are presented here: https://superuser.com/questions/648133/why-is-chrome-ignoring-etc-hosts-on-os-x

– LyK – 2018-05-08T23:13:02.830

7

I had a similar issue with a site still re-directing to my.site.com/new-site and found the 'clear cache' via internals to work.

Redirects can be caused by a variety of things - caching by your browser, your system, the network, the site configuration itself and any in between steps.

In addition to clearing browsing history and cookies, I also tried the answers from Clear cache for specific domain name in chrome - I suggest trying answers in order of increasing complexity (e.g. start with what you're happiest with and if that doesn't work, try one of the more tricky solutions)

From https://superuser.com/users/83619/tom-auger

After opening up the developer tools (usually by pressing F12) Click + Hold on the "Reload Page" button. From the popup list, choose "Empty Cache and Hard Reload".

From https://superuser.com/users/87608/euroblaze

Here's how to delete Chrome's cookies selectively by domain or subdomain:
* go to chrome://settings/content/cookies
* type the domain name in the search box
* click delete

Sandra

Posted 2017-01-11T22:04:45.040

Reputation: 171

1+1 My issue was that http : //127.0.0.1:8000 was redirecting to https : //127.0.0.1:8000 which is obviously not what I wanted. I tried everything from deleting cookies to checking out chrome://net-internals but it didn't seem to work for me. What did work for me was bringing up the chrome dev tools, click+hold an then "Empty Cache and Hard Reload". – Akshay Gaur – 2018-07-19T14:33:06.873

2

The only method that worked from me is using Development tools an check on disable cache and the redirection were gone :)

reference

Salem F

Posted 2017-01-11T22:04:45.040

Reputation: 163

1Yep! Only this worked for me. So to specify: 1. Open developer tools (F12) - 2. Go to Network tab - 3. Check the Disable cache checkbox - 4. Visit the site (it should work) - 5. Uncheck the Disable cache checkbox. - 6. Visit site again (should keep working) – Jules – 2020-01-17T15:05:29.163

1

If it's an 301 redirect Chrome will cache it. To clear the cache, go to:

Chrome Menu > Settings > Show advanced settings... > Privacy > Click Clear browsing data...

Good luck.

Agu Dondo

Posted 2017-01-11T22:04:45.040

Reputation: 111

which part shall one thick for the redirects? – João Pimentel Ferreira – 2017-04-04T19:30:57.173

And I've cleared my browser history and it didn't solve the issue, The link from search results pointed me to this comment, use most up voted answer instead that works just fine. – jcubic – 2018-06-24T11:49:50.527

0

Go to chrome://net-internals/#dns and click the Clear Host Cache button

Nathan Hanna

Posted 2017-01-11T22:04:45.040

Reputation: 101