Is there any way to determine if a page on the web is a holding page? This is because I need to determine if any of curl recieved pages are unavailable due to the domain expiring as part of my error handling.
I thought that a distinct HTTP code would be given at this circumstance but instead I am given a 200 OK which has made things difficult.
Is the only way to search for specific phrases using strpos() in PHP?
Any help would be appreciated!
Is the only way to search for specific phrases using strpos() in PHP?
Yup. There is nothing else distinguishing a domain holding page from a normal web site.
You could search for
It's probably going to be impossible to achieve 100% reliability though.