0

我在主机上安装了httpd,修改了httpd.conf文件如下

ServerRoot "/etc/httpd"

Listen 80


Include conf.modules.d/*.conf


User apache
Group apache

ServerAdmin root@localhost

<Directory />
    AllowOverride none
    Require all granted
</Directory>
DocumentRoot "/home/admin/domains/morabi.app/public_html"

<Directory "/var/www">
    AllowOverride None
    Require all granted
</Directory>

<Directory "/var/www/html">
    Options Indexes FollowSymLinks

    AllowOverride None

    Require all granted
</Directory>

<IfModule dir_module>
    DirectoryIndex index.html
</IfModule>

<Files ".ht*">
    Require all denied
</Files>

当我在浏览器中加载我的 IP 地址时,它显示“禁止您无权访问此服务器上的 /”。错误。和 /home/admin/domains/morabi.app 权限是 755 也加载了文件,但我的 ip http://xxxx/有禁止错误

4

1 回答 1

0

您需要在其中添加以下内容,

<Directory "/home/admin/domains/morabi.app/public_html">
# Learn more about this at https://httpd.apache.org/docs/2.4/mod/core.html#options
Options Indexes FollowSymLinks

# Learn more about this at https://httpd.apache.org/docs/2.4/mod/core.html#allowoverride
AllowOverride All

# The solution for your error, allows your files to be served, learn more about this at https://httpd.apache.org/docs/2.4/howto/access.html
Require all granted
</Directory>

并重新启动 Apache。

这是许多人忘记的事情,有些人不知道。请注意这一点。

编辑:
将单词public_html添加到目录配置中

另一个提示

在运行这些命令之前进行备份,如果文件发生任何不良情况,我概不负责。

ls -la尝试通过在终端内的 morabi.app 中运行来检查文件夹 public_html 的所有者,如果它不是您的用户或 apache,请尝试在目录 morabi.app 中运行此命令:

确保您以您使用的主要用户身份运行它,我建议您不要将其更改为 root。

chown $USER:$USER public_html -R

上面的命令将更改文件夹的所有者和其中的文件。如果将所有者更改$USERapache运行命令的用户不起作用,请更改为,但如我上面所说,请务必在之前进行备份。

于 2019-12-25T10:59:19.567 回答