Apache 无法提供目录服务并出现 403 Forbidden 错误

Apache 无法提供目录服务并出现 403 Forbidden 错误

我有一个希望 apache 提供服务的文件夹。该文件夹位于以下home目录下:/home/mywebsite

这是我的 Apache 配置文件:

<Directory "/home/mywebsite">
    Order allow,deny
    Allow from all
</Directory>
<VirtualHost mywebsite.com:80>
        DocumentRoot "/home/mywebsite"
        ServerName "mywebsite"
</VirtualHost>

这是home我运行ls -l 命令时目录的样子。

total 1
drwxr-x--- 12 mywebsite     mywebsite     4096 Nov 20 15:05 mywebsite

我不知道为什么会出现 403 错误。该配置有什么问题?

相关内容