现在已经被困在这一段了一会儿。始终被重定向到htdocs的索引。
我确保NameVirtualHost未被注释。
包括conf / extra / httpd-vhosts.conf是未注释的。
我尝试更改目录下的指令;
Order allow, deny
Allow from all
要
Require all granted
我多次重启Apache,刷新了DNS。
我的文件目前如下所示;
NameVirtualHost *:80
<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs"
ServerName localhost
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs/development"
ServerName testsite.dev
ServerAlias www.testsite.dev
<Directory "C:/xampp/htdocs/development">
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
127.0.0.1 localhost
127.0.0.1 www.testsite.dev
我错过了什么吗?任何帮助将不胜感激!