How to access a subdomain of an IP address?

I have a website that is accessible only by IP address. How can I access a subdomain of that website?


Add subdomain.website.com to your /etc/hosts file, pointing to that IP.


It depends what you mean by "subdomain" and what you mean by "accessible only by IP address".

If, say, you're trying to access google.com and maps.google.com, but for some reason your local DNS server doesn't have an entry for google.com, then you may as well query it for maps.google.com as they're separate entries (usually).

If you don't have a domain name for the website but instead only an IP address, then what does a "subdomain" of that mean? Say you're browsing to http://87.87.87.87, what is a "subdomain" of that?

Finally, it is usually pointless trying to reach a subdomain by connecting to the same IP address, as subdomain matching at the webserver-level is done by looking at the headers sent by the client, which wouldn't contain any subdomain information if you're connecting by IP address.