How to access site through IP address when website is on a shared host?
According with the HTTP/1.1 standard, the shared IP hosted site can be accessed by a GET request with the IP as URL and a header of the host. Here there are two examples(wget and curl): $ wget –header ‘Host:somerandomservice.com’ http://67.225.235.59 $ curl –header ‘Host:somerandomservice.com’ http://67.225.235.59 Resources: https://en.wikipedia.org/wiki/Shared_web_hosting_service http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.23