|
This is an Apache issue.
# If you want to use name-based virtual hosts you need to
define at
# least one IP address (and port number) for them. # NameVirtualHost 12.34.56.78:80 Then, below that, all the domains that respond to that virtual
host are called out like this:
<VirtualHost 12.34.56.78>
ServerName www.domainname.com
ServerAlias domainname.com
DocumentRoot /path/to/htdocs/domainname
</VirtualHost>
Sometimes, the entry is
<VirtualHost 12.34.56.78:80>
Mike
|