I have been reading all the post that have something to do with v-hosting.
I
have two website one is tandytranscription.com the other is
tandytransport.com. I made a folder in my htdocs called hosts. I made two
folders in that called transport and transcription then I put the
index.html
files in that. On my httpd config looks like this:
NameVirtualHost *
<VirtualHost *>
ServerAdmin admin.TakeThisOut@tandytransport.com
DocumentRoot /hosts/transport
ServerName
www.tandytransport.com
ErrorLog logs/transport-error_log
CustomLog logs/transport-access_log common
</VirtualHost>
<VirtualHost *>
ServerAdmin webmaster.TakeThisOut@tandytranscription.com
DocumentRoot /hosts/transcription
ServerName
www.tandytranscription.com
ErrorLog logs/transcription-error_log
CustomLog logs/transcription-access_log common
</VirtualHost>
When I try to pull up the different sites all I get is the 404page. What
am
I missing? Does anyone know Thanks James