开发者

Differences between the way WAMP and XAMPP handle vhosts?

开发者 https://www.devze.com 2023-01-09 09:20 出处:网络
I\'m switching from WAMP to XAMPP and XAMPP has broken my vhosts. It won\'t allow access to them. \"You don\'t have permission to access

I'm switching from WAMP to XAMPP and XAMPP has broken my vhosts. It won't allow access to them.

"You don't have permission to access the requested directory. There is either no index document or the direct开发者_如何学Goory is read-protected."

The Apache error log says:

"[error] [client 127.0.0.1] client denied by server configuration"

What does WAMP set that XAMPP doesn't in order to make the vhosts work?


Some possible reasons:

  • You are missing a <Directory> container to allow access to that file tree:

    <Directory "C:/Foo/Bar/">
        Order allow,deny
        Allow from all
    </Directory>
    
  • You are using PHP but index.php is not defined as directory index:

    DirectoryIndex index.php
    
  • The directory is read-protected

0

精彩评论

暂无评论...
验证码 换一张
取 消