Soo habe den Umzug komplett neu durchgeführt. Allerdings gleiches Fehlerbild.
errorlog:
[Sat Nov 12 18:12:43 2016] [error] [client 46.5.2.209] File does not exist: /home/vereinsweb
[Sat Nov 12 18:12:49 2016] [error] [client 207.46.13.115] File does not exist: /home/vereinsweb
[Sat Nov 12 18:12:59 2016] [error] [client 46.5.0.174] File does not exist: /home/umleitung
000-default vom apache2
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
<VirtualHost *:80 >
ServerName svbuechelberg.de
ServerAlias svbuechelberg.de
DocumentRoot /var/www/
<Directory /var/www>
Order Deny,Allow
Allow from all
# Don't show indexes for directories
Options -Indexes
</Directory>
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/php text/css text/js text/javascript text/javascript-x
</IfModule>
</VirtualHost>
<VirtualHost *:80 >
ServerName http://www.svbuechelberg.de
ServerAlias http://www.svbuechelberg.de
DocumentRoot /var/www/
<Directory /var/www>
Order Deny,Allow
Allow from all
# Don't show indexes for directories
Options -Indexes
</Directory>
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/php text/css text/js text/javascript text/javascript-x
</IfModule>
</VirtualHost>
warum sucht er in /home/umleitung und nicht in /var/www ??
muss man den webserver neustaraten nach dem ändern der virtual hosts?