禁止您无权访问此页面错误和解决方案
时间:2020-01-09 10:38:26 来源:igfitidea点击:
问题描述:我正在使用Apache Web服务器,为什么我收到此错误消息?
Forbidden You dont have permission to access this page
解决方法:您的网页上的权限不正确。
通过ssh会话登录,并使用chmod命令设置正确的权限。
转到目录(例如public_html或/var/www/sitename.com/dir/),然后执行以下命令
$ chmod 755 *.*
或者
$ chmod o+x ./
如果您有更多子目录,请使用-R选项:$ chmod -R 755 *.*
如果您有权访问Apache配置文件,请查看以下提示以摆脱Apache 403禁止的错误。