我有两个目录,使用(/var/www/html)
的第一个目录,在我包含index.html文件后,我的页面显示完美。然后我创建了第二个目录(/home/xsol/website)
并创建了另一个index.html文件。但是,对于第二个目录,即使我已向该文件提供chmod -r 755
,您仍会在页面上看到403禁止错误。我的httpd.conf文件如下所示
<Directory "/home/xsol/website">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Require all granted
</Directory>
<Directory "/var/www/html">
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
答案 0 :(得分:0)
在chmod -R 755
目录上试用/home/xsol
并将这些设置添加到新目录
Order allow,deny
Allow from all
Require all granted