The solution to the issue is:
<VirtualHost ip.ip.ip.ip>
ServerAdmin email@somewhere.net
#DocumentRoot /var/sites/mysite
ScriptAlias /index.html "/var/sites/mysite/index.h
ErrorLog /var/sites/mysite//logs/er
</VirtualHost>
the /index.html "/var/sites/mysite/index.h
Thanks for all the great help experts! ;-)
Main Topics
Browse All Topics





by: dr34m3rsPosted on 2009-11-03 at 06:05:32ID: 25729002
The solution to that issue is:
ror_log
html
<VirtualHost ip.ip.ip.ip>
ServerAdmin email@somewhere.net
DocumentRoot /var/sites/mysite
ScriptAlias / "/var/sites/mysite/"
ErrorLog /var/sites/mysite//logs/er
</VirtualHost>
Also, I forgot about the trailing "/" on the end of the ScriptAlias.
The new issue is:
If you just put in the site name http://sitename.com/ you get a forbidden for /
If you put in the path to the script it works http://sitename.com/index.
How to tell apache to follow to index.html like it normally does for docroot?