I have a list of URL using multiple redirection like this:
url1=>url1redirect1=>url1redirect2=>url1redirect3= >url1final url2=>url2redirect1=>url2redirect2=>url2final ...
The list is in this format:
url1
url2
url3
I don't own all the website in the redirection chain. Some of them are third party tracking software.
Is there a way to capture all intermediary urls and the final url and export them into a neat csv file like this:
url1,url2,url3,
url1redirect1,url2redirect1,url3redirect1,
url1redirect2,url2redirect2,url3redirect2,
url1redirect3,url2final,url3redirect3,
url1final,,url3redirect4,
...