i would read the apache doc on v-host
http://httpd.apache.org/docs/2.2/vhosts/
all the info is there . as long as godady will forward it to
h??p://webSite.com/VertualHost
and
/var/WWW/http ( docroot for the first web site)
/var/WWW/http/VertualHost ( the docroot for the v-host)
is mapped in httpd.conf
Code:
# Ensure that Apache listens on port 80
Listen 80
# Listen for virtual host requests on all IP addresses
NameVirtualHost *:80
<VirtualHost *:80>
DocumentRoot /www/example1
ServerName www.example.com
# Other directives here
</VirtualHost>
<VirtualHost *:80>
DocumentRoot /www/example2
ServerName www.example.org
# Other directives here
</VirtualHost>
PS. i tend to set up servers with everything apache uses in one folder
/var/WWW/Apache
/var/WWW/http ( the CMS)
/var/WWW/MySql
/var/WWW/PhpMyAdmin
and the folder /var/WWW is a MOUNT POINT for it's own partition - or disk .