xampp 1.7.3升级已破坏的虚拟主机禁止访问

时间:2011-06-13 07:26:00

标签: xampp dropbox virtual-hosts

我遇到了与其他用户报告的类似问题 XAMPP v1.7.4 installation issues,local host not working

在我的案例中将xampp升级到1.7.3(osx)已经破坏了我的虚拟主机。

在/ etc / hosts中我有

127.0.0.1       localhost
255.255.255.255 broadcasthost
::1             localhost  
fe80::1%lo0     localhost

127.0.0.1 mysite.test

在/Applications/XAMPP/etc/httpd.conf中我有:

LoadModule rewrite_module modules/mod_rewrite.so #uncommented
Include /Applications/XAMPP/etc/extra/httpd-vhosts.conf #uncommented

在/Applications/XAMPP/etc/extra/httpd-vhosts.conf我有:     #使用基于名称的虚拟主机。     NameVirtualHost *:80     NameVirtualHost *:443

<VirtualHost *:80>
  ServerName mysite.test
  DocumentRoot "/path-to-mysite/"
  <Directory "/path-to-mysite/">
    DirectoryIndex index.php
    Options Indexes FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
  </Directory>
</VirtualHost>

当tryng访问mysite.test时,Apache会记录以下错误     [错误] [客户端127.0.0.1](13)权限被拒绝:访问/拒绝

我删除了.htaccess,并在导致问题的情况下修复了我的磁盘权限。

任何人都可以提出我可能遗失的内容吗?

非常感谢。

1 个答案:

答案 0 :(得分:3)

确保主.conf文件中没有更改的权限。可能是AllowOverride None或导致问题的原因。