gpt4 book ai didi

apache - 在 apache2 中更改根目录会出现 403 Forbidden 错误

转载 作者:行者123 更新时间:2023-12-04 18:32:28 24 4
gpt4 key购买 nike

虽然这里有很多类似的问题,但我无法从他们那里解决我的问题。
我已经安装了Apache/2.4.7 (Ubuntu)在我的ubuntu(14.04) .我已经更改了两个配置文件以更改默认DocumentRootapache这是/var/www/home/name/www .我更改的文件是/etc/apache2/apache2.conf/etc/apache2/sites-available/000-default.conf .在 apache2.conf我放

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

000-default.conf我变了,
DocumentRoot /home/name/www

我的 /home/name/www文件具有必要的权限。
drwxr-xr-x 3 www-data www-data www

但是当我尝试访问 localhost从我收到的浏览器 You don't have permission to access / on this server.错误。我错过了什么?

最佳答案

用于更改 apache 的默认根目录来自 /var/www/home/<username>/www以下更改对我有用。
我编辑了 的以下值等/apache2/apache2.conf 像这样的文件。在编辑文件之前,最好保留原始文件的备份。

<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>

<Directory /usr/share>
AllowOverride None
Require all granted
</Directory>

<Directory /home/<username>/www>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>

然后我改了 /etc/apache2/sites-available/000-default.conf 文件的 DocumentRoot .
DocumentRoot /home/<username>/www

之后重启apache服务器,
sudo service apache2 restart

关于apache - 在 apache2 中更改根目录会出现 403 Forbidden 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23490099/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com