When would you consider using one over the other and why?
|
|
The
Update: after checking the answer of Pekka on your question which contains a link to bobince's answer that PHP would always return After first suspecting PHP and digging in some PHP bug reports regarding the subject, I learned that the root of the problem is in web server used, that it incorrectly returned HTTP
Update 2: I think more and more that the bug is actually in the Update 3: I finally found a related bug at Apache HTTPD bug database. This behaviour was introduced since around Apache HTTPD 1.3. You need to set
This worked for me. Summarized, |
|||||||
|
|
You shouldn't rely on either to be safe. That said, what to use really depends on what you want to do. If you want to determine which domain your script is running on, you can safely use |
||||
|
|
|
Depends what I want to find out. SERVER_NAME is the host name of the server, whilst HTTP_HOST is the virtual host that the client connected to. |
|||
|
|
|
Please note that if you want to use IPv6, you probably want to use HTTP_HOST rather than SERVER_NAME . If you enter http://[::1]/ the environment variables will be the following:
This means, that if you do a mod_rewrite for example, you might get a nasty result. Example for a SSL redirect:
This applies ONLY if you access the server without an hostname. |
|||
|
|
|
if you want to check through a server.php or what ever you want to call it with the following:
or
Then access it with all the valid urls for your site and check out the difference. |
||||
|
|
|
It took me a while to understand what people meant by SERVER_NAME is more reliable. I use a shared server and does not have access to virtual host directives. So, I use mod_rewrite in .htaccess to map different HTTP_HOSTs to different directories. In that case, it is HTTP_HOST that is meaningful. The situation is similar if one uses name-based virtual hosts : the server_name directive within a virtual host simply says which HTTP_HOST will be mapped to this virtual host. The bottom line is that, in both cases, the "server name" provided by the client, which is actually called HTTP_HOST, must be matched with a name within the server, which is itself mapped to a directory. Whether the mapping is done with virtual host directives or with htaccess mod_rewrite rules is secondary here. In both cases, the HTTP_HOST must be the SERVER_NAME. I am glad that Apache is configured that way. However, the situation is different with IP-based virtual hosts. In this case and only in this case, SERVER_NAME and HTTP_HOST can be different, because now the client selects the server by the IP, not by the name. Indeed, there might be special configurations where this is important. So, starting from now, I will use SERVER_NAME, just in case my code is ported in these special configurations. |
|||
|
|
