I'm moving a site from one e-commerce software to another, and I've created URL Rewriter rules to do 301 redirects from the Old URLs to the new ones. I've tested them with a small sample of URLs, but I'm looking for some sort of tool that will let me test as many of the URLs as possible. Does anyone know of a tool that I can feed a list of URLs (or a sitemap.xml). This tool will attempt to retrieve each URL, and then report the status code for each. The result should be a list of URLs with the status code, something like this:
www.site.com/oldurlformat1/ 301 Permanently Moved
www.site.com/newurlformat1/ 200 OK
www.site.com/oldurlformat2/ 301 Permanently Moved
www.site.com/newurlformat2/ 200 OK
I can almost do this with wget, but getting the summary/report at the end is where I'm stuck.