Lorenzo816
Lorenzo816

Reputation: 87

Check a file of HTTP URLs for HTTP response codes

I need a way to check a file that contains links to see if any of them are broken. The file contains links to thousands of different URLs. I don't need to crawl or spider any further than the URLs that are in the file - we just need a HTTP request response for each URL.

Upvotes: 0

Views: 1263

Answers (1)

TheCodeKing
TheCodeKing

Reputation: 19230

Take a look at Xenu.

It does exactly what you need, assuming it's a web page, or a text file of links. You can control how deep it follows links.

Upvotes: 2

Related Questions