在/etc/apache2/sites-enabled
中,我有:
clothes.conf
elite.conf
travel.conf
当我尝试在地址栏中打开它们时,第一和第二个指向它们正确的目录。但是第三个travel.conf
打开第一个-clothes.conf
。这是我的travel.conf
<VirtualHost *:80>
ServerName tavel.com
DocumentRoot /var/www/html/travel
ErrorLog /var/www/html/travel/logs/error.log
<Directory /var/www/html/travel>
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
如果我同时禁用了clothes.conf
和elite.conf
,那么它将打开正确的travel.conf
网站。我在做什么错了?