Ich habe Apache 2.4 auf Ubuntu 14.04 installiert und es funktionierte adressenmäßig http://localhost/
einwandfrei. Aber als ich zum Beispiel versuchte, einen neuen virtuellen Host hinzuzufügen http://bow.loc
und Apache neu zu starten, war die neue Adresse am http://bow.loc
und am nicht verfügbar http://localhost
.
Meine Konfiguration ist:
<VirtualHost *:80>
ServerName www.bow.loc
ServerAlias bow.loc
DocumentRoot /var/www/html/bow/web
<Directory /var/www/html/bow>
AllowOverride All
Options FollowSymLinks MultiViews
Order allow,deny
Allow from all
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /app.php [QSA,L]
</IfModule>
</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>
Wie kann ich meine Seite erreichen http://bow.loc
?