Questions tagged «apache2.4»

5
为什么Ubuntu 14.04上的Apache虚拟主机无法正常工作?
我在Ubuntu 14.04上安装了Apache 2.4,并且按http://localhost/地址运行正常。但是,当我尝试添加新的虚拟主机(例如)http://bow.loc并重新启动apache时,新的地址在上不可用,在上http://bow.loc可用http://localhost。 我的配置是: <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, # …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.