I think you have DocumentRoot set incorrectly in your mythweb.conf file. Try something like this:<br><br>DocumentRoot /var/www<br> <Directory /><br> Options FollowSymLinks<br> AllowOverride None
<br> Order deny,allow<br> Deny from all<br> </Directory><br> <Directory /var/www/><br> Options FollowSymLinks MultiViews<br> AllowOverride None
<br> Order allow,deny<br> allow from all<br> </Directory><br><Directory "/var/www/html/mythweb/"><br> Options FollowSymLinks<br> AllowOverride All<br>
Order deny,allow<br> Deny from all<br> Allow from <a href="http://128.0.0.1">128.0.0.1</a> <a href="http://192.168.1.0/8">192.168.1.0/8</a><br> </Directory><br><br>Then you would access mythweb from
<a href="http://192.168.1.13/html/mythweb/">http://192.168.1.13/html/mythweb/</a><br>