更改 Apache2 文档根目录时出现 403 禁止访问

更改 Apache2 文档根目录时出现 403 禁止访问

我正在运行 Mint 17,并且将/etc/apache2/sites-available/000-default.conf文件更改为以下内容:

<VirtualHost *:80>
    # The ServerName directive sets the request scheme, hostname and port that
    # the server uses to identify itself. This is used when creating
    # redirection URLs. In the context of virtual hosts, the ServerName
    # specifies what hostname must appear in the request's Host: header to
    # match this virtual host. For the default virtual host (this file) this
    # value is not decisive as it is used as a last resort host regardless.
    # However, you must set it for any further virtual host explicitly.
    #ServerName www.example.com

    ServerAdmin webmaster@localhost
    DocumentRoot /home/vg/www

    # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
    # error, crit, alert, emerg.
    # It is also possible to configure the loglevel for particular
    # modules, e.g.
    #LogLevel info ssl:warn

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined

    # For most configuration files from conf-available/, which are
    # enabled or disabled at a global level, it is possible to
    # include a line for only one particular virtual host. For example the
    # following line enables the CGI configuration for this host only
    # after it has been globally disabled with "a2disconf".
    #Include conf-available/serve-cgi-bin.conf
</VirtualHost>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

$ ls -al我的主目录级别的输出:

drwxr-xr-x  2 vg   vg   4096 Aug 29 12:44 www

目录内www

drwxr-xr-x  2 vg vg 4096 Aug 29 12:44 .
drwxr-xr-x 21 vg vg 4096 Aug 29 12:43 ..
-rwxrwxr-x  1 vg vg   22 Aug 29 12:44 info.php

当我将 Firefox 指向 localhost/info.php 时,出现 403,权限被拒绝。

info.php 仅包含:

<?php
    phpinfo();
?>

有任何想法吗?

答案1

在 ubuntu apache 中,默认配置是默认不允许随机虚拟站点根目录

编辑/etc/apache2/apache2.conf以及以下几行(最好位于默认目录块之后,以便您可以跟踪为站点根目录启用的位置)

<Directory /home/vg/www>
    Options Indexes FollowSymLinks
    AllowOverride None
    Require all granted
</Directory>

重新加载 apache,错误就会消失,并且您应该会再次看到您的网站。

相关内容