Hallo Users,
ich wollte eine Art "Subdomain" durch den VirtualHost erstellen und habe diesen Tutorial befolgt: https://youtu.be/iBHcn0AY-u4
Und bekomme eine fehlermeldung wie:
Not Found
ZitatThe requested URL / was not found on this server.Apache/2.2.16 (Debian) Server at news.no-mercy-gaming.de Port 80</address>
Dazu steht folgendes in der conf Datei:
ZitatAlles anzeigen
<VirtualHost *:80>
ServerName news.no-mercy-gaming.de
ServerAdmin admin@no-mercy-gaming.de
DocumentRoot /var/www/news/
<Directory /var/www/news/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
</Directory>
</VirtualHost>
Default config:
ZitatAlles anzeigen<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
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>