parked-page

Method to detect a parked page?

Anyone know of a way to programatically detect a parked web page? That is, those pages that you accidentally type in (or intentionally sometimes) and they are hosted by a domain parking service with nothing but ads on them. I am working on a linking network and want to make sure that sites that expire don't end up getting snatched by s...

efficient way to check parked domains?

I am writing a script that checks if given domain is parked or not. so far, I have this solution: add couple of characters at the end of the url. if url redirects to another page and returns 302 http status code then it is parked domain. returns other than 302 then it is normal domain. but some norma...