우분투 14.04에 Apache 2.4를 설치했으며 http://localhost/
주소 별로 제대로 작동했습니다 . 그러나 새 가상 호스트를 추가하고 http://bow.loc
아파치를 다시 시작 하려고 할 때 새 주소를 사용할 수 없었 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,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
내 사이트를 어떻게 구할 수 http://bow.loc
있습니까?
관련 : askubuntu.com/a/362992/8698
—
Dan