Apache服务器2.4.9错误号403

时间:2014-06-29 16:35:01

标签: php apache .htaccess laravel-4

我遇到Apache服务器2.4.9错误号403的问题。

我一直试图使用所有这些解决方案自行修复它:

  1. .htaccess文件中的选项+索引。
  2. 更改httpd.conf中的默认值。
  3. chmod +775 www文件夹。
  4. 更改windows/system32
  5. 中的主机文件

    以下是httpd.conf中的配置:

    Require all granted
    

    和httpd-vhosts.conf:

    Require all granted
    

1 个答案:

答案 0 :(得分:0)

添加"要求全部授予"在目录中的vhost配置中。

<VirtualHost *:80>
    HostName test.test.de
    DocumentRoot /var/www/xxx/

    <Directory /var/www/xxx>
        Require all granted
    </Directory>
</VirtualHost>

Adding VirtualHost fails: Access Forbidden Error 403 (XAMPP) (Windows 7)