Xammp Virtualhost始终重定向到htdocs

时间:2017-03-24 14:57:49

标签: apache xampp virtualhost htdocs

现在已经被困在这一段了一会儿。始终被重定向到htdocs的索引。

我确保NameVirtualHost未被注释。

包括conf / extra / httpd-vhosts.conf是未注释的。

我尝试更改目录下的指令;

Order allow, deny
Allow from all

Require all granted

我多次重启Apache,刷新了DNS。

我的文件目前如下所示;

的httpd-vhosts.conf

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

我错过了什么吗?任何帮助将不胜感激!

0 个答案:

没有答案