1

好的,所以我在尝试加载它时遇到了 403 错误 - 我安装了 Zend 2,即使是通过幸运的人的 youtube 指导,它可以开箱即用。

我遵循了这个建议,但这没有用,因为没有从我的文件中LoadModule rewrite_module modules/mod_rewrite.so注释掉。httpd.conf

我试过这个,但添加Options +Indexes +FollowSymLinks +ExecCGI到我的vhosts.conf文件没有帮助。

我尝试完全删除 .htaccess 文件。我尝试注释掉httpd-xampp.conf文件的“XAMPP 安全概念”部分。我试着很好地问它,我试着对它大喊大叫——这两种策略都没有结果。

我正在运行 Windows 8,但我似乎无法弄清楚为什么会出现权限错误。为了清楚起见,每次更改后我都会重新启动 Apache。当我从 vhosts.conf 文件中删除条目时,403 消失了,但这会导致该目录中出现 404。我已经包含了vhosts.conf文件中的相关代码。谢谢你的帮助!

    NameVirtualHost *:80

    <VirtualHost *:80>
        ServerName zf2.localhost
        DocumentRoot "C:/Users/Captain/Documents/zf2/public"
        SetEnv APPLICATION_ENV "development"
        <Directory C:/Users/Captain/Documents/zf2/public>
        Options +Indexes +FollowSymLinks +ExecCGI
            DirectoryIndex index.php
            AllowOverride All
            Order allow,deny
            Allow from all
        </Directory>
    </VirtualHost>

再次感谢。

更新 1

错误日志是:

    [Sun Mar 17 03:35:32.627159 2013] [authz_core:error] [pid 5492:tid 1764] [client ::1:50566] AH01630: client denied by server configuration: C:/Users/Captain/Documents/zf2/public/
4

1 回答 1

9

解决了它:

httpd.conf文件中,更改

    <Directory />
        AllowOverride none
        Require all denied
    </Directory>

到:

    <Directory />
        AllowOverride none
        Require all granted
    </Directory>

这对我有用,我现在可以访问 localhost 和所有目录项目。

于 2013-03-17T17:15:14.403 回答