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 normal domains also return 302.
so any suggestions are greatly appreciated.