Ho installato Apache 2.4 su Ubuntu 14.04 e funzionava bene per http://localhost/
indirizzo. Ma quando ho provato ad aggiungere un nuovo host virtuale, ad esempio http://bow.loc
riavviando apache, il nuovo indirizzo non era disponibile http://bow.loc
e disponibile su http://localhost
.
La mia configurazione è:
<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>
Come posso ottenere il mio sito da http://bow.loc
?