----- Original Message ----- > Hi, > > > I got the following parameters in my VirtualHost configuration: > > > > <VirtualHost *:80> > ServerName www.someserver.com > ServerAlias www.otherserver.com > ServerAlias otherserver.com > > > > DocumentRoot /var/www/public_html > ErrorLog /var/log/apache2/error_log > CustomLog /var/log/apache2/access_log combined > > > DirectoryIndex index.html index.htm index.php index.php4 index.php5 > > > <Directory /var/www/public_html> > Options -Indexes +IncludesNOEXEC +FollowSymLinks > allow from all > AllowOverride All > </Directory> > </VirtualHost> > > > I can access without any problems to www.someserver.com and > www.otherserver.com , but otherserver.com (w/out www) returns HTTP > error 304: Permission Denied.
HTTP 304 means Not Modified, this is in reply to time-based requests on resources. So, if the resource did not change, you'll get this. HTTP 403 means Forbidden, the request is understood, but the server refuses to fulfill it, for which ever reason. That reason is usually stated in the Error Log. And is generally one of the following three: http://www.onlamp.com/pub/a/apache/2004/04/22/apacheckbk.html i -- Igor Galić Tel: +43 (0) 664 886 22 883 Mail: i.ga...@brainsware.org URL: http://brainsware.org/ --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org " from the digest: users-digest-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org