我在localhost上遇到了apache2的问题
我有很多虚拟主机,之前工作正常,但今天我有一个问题
当我尝试打开test-bot.app apache强迫我https://test-web.app!
这是我的vhost文件:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName test-bot.app
ServerAlias test-bot.app
DocumentRoot /var/www/html/test-bot/public
<Directory />
AllowOverride All
</Directory>
<Directory /var/www/html/test-bot/public>
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Require all granted
</Directory>
ErrorLog /var/log/apache2/test-bot.app-error.log
LogLevel error
CustomLog /var/log/apache2/test-bot.app-access.log combined
</VirtualHost>
我能做什么?