Tôi đã cài đặt Apache 2.4 trên Ubuntu 14.04 và nó hoạt động tốt theo http://localhost/
địa chỉ. Nhưng khi tôi cố gắng thêm một máy chủ ảo mới, ví dụ http://bow.loc
và khởi động lại apache, địa chỉ mới không có sẵn http://bow.loc
và có sẵn trên http://localhost
.
Cấu hình của tôi là:
<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>
Làm thế nào tôi có thể có được trang web của tôi bằng cách http://bow.loc
?