When I type in my browser and press ENTER, this website redirects me to , from there to and then I finally landed on .
These redirection happens at the website end, I am not aware where I am going. But I finally landed on this URL: .
I want to track all the URLs my browser sees. I am not seeing it in my history as its redirect at website end. Is there any firefox addon or some tool which can track this for me?
27 Answers
Edited: It is now a decade later and there's a better way to do this
- goto
- paste in the url in quetion.
- hit enter.
- read the results on the right hand side.
original 2011 answer
Install FireBug 1
open firebug
goto the net tab
click on the "persist" option
enter your url
watch the list of urls fetched change. you'll see something like this for your example:
302 Moved temporarily
302 Moved temporarily
302 Moved temporarily
200 OK
If you select one of those and open the twisty next to ti you can get the headers which will show you exactly what was requested and what the response was. IN particular you want to look at the Location header on the responses, as that tells your browser what to go load instead.
Footnotes
- Or use any other form of devtools for your favorite browser.
Now, when FireBug is integrated into developer tools you may enable persistent logs by next steps:
- Open DevTools (F12)
- Go into
Toolbox options(forth icon from right top) - Find
Common preferencessection Enable persistent logs- Observe network requests and responses under the
Networktab
Screenshot:
UPD
I update by FF to v61. In this version configuration slightly different:
- Open DevTools (F12)
- Enable
Persists Logs
UPD
For newer version of FF, this options are at settings:
If you don't want to install firebug, then you can use the Redirect Tracing Tool
Also you can use or other similar product with additional features - like trace redirects from different device types or from different countries (it's very usefull for testing CPA links etc...)
redirectdetective.com not works with SSL connection (https://) but i have find: WhereGoes? - A tool for tracing the redirect path of URLs.
Since there was no answer for IE, the trick is to unselect "Clear entries on redirect"
just do wget on that URL and you will see the redirect URL in the command-line.
1