Remove browser redirect

Hi,
I finished learning the django module, and now I’m starting the Express module.
In the django module we do a permanent redirect from http://127.0.0.1:8000/
to http://127.0.0.1:8000/catalog/
Now, when I’m trying to set up a node server, and browse http://127.0.0.1:8000, the browser still redirects me to http://127.0.0.1:8000/catalog/
I tried to remove the cache and browsing data of 127.0.0.1 but it didn’t work
Does anyone have any idea how to get rid of this redirect?
this is from chrome devtools:
image

I found the answer here:
https://stackoverflow.com/questions/9130422/how-long-do-browsers-cache-http-301s#:~:text=There%20is%20a%20very%20simple,to%20remove%20the%20cached%20redirection.

we may want to add it to the documentation…

The first time I encountered this issue is when I started working on the mini blog exercise

1 Like