ubuntu apache 403错误

vi /etc/apache2/sites-enabled/000-default

#    Alias /doc/ "/usr/share/doc/"

#    <Directory "/usr/share/doc/">

#        Options Indexes MultiViews FollowSymLinks

#        AllowOverride None

#        Order deny,allow

#        Deny from all

#        Allow from 127.0.0.0/255.0.0.0 ::1/128

#    </Directory>

重启apache

网站目录权限755

ubuntu apache 403错误

时间: 2024-10-30 15:25:02

ubuntu apache 403错误的相关文章

redhat centos apache 403 错误 Forbidden You don&#39;t have permission to access / on this server

redhat centos apache 403 错误 centos7 apache2.2.34源码包安装成功,确认进程已启动( ps -le | grep httpd) ,防火墙已关闭,但访问时报错: Forbidden  You don't have permission to access / on this server 原因为:安装目录/conf/httpd.conf配置文件中 User deamon Group deamon 选项没有修改,上述配置为默认配置,将其修改为 User t

Apache - 403错误

1.1.1  现象 安装完毕后,访问http://localhost:8080/,出现错误:HTTP 错误 403 - 禁止访问,即403 Forbidden:You don't have permission to access / on this server. 1.1.2  原因 马上打开apache的配置文件httpd.conf,逐行检查.在大约快一半的地方有以下这段代码: <Directory /> Options FollowSymLinks AllowOverride None

SELinux导致Apache 403错误解决方法

将DocumentRoot设在/var/www/html下可以访问 但是将DocumentRoot设在其他目录(如:/webroot)下就出现Forbidden了.在./etc/httpd/conf/httpd.conf中的相关部分是这样的: Alias /query "/home/query" <Directory "/home/query"> Options Indexes MultiViews AllowOverride None Order al

Apache 403 错误解决方法-让别人可以访问你的服务器

参考网址:http://www.cnblogs.com/mrlaker/archive/2013/04/29/3050888.html http://www.jb51.net/article/61193.htm 问题描述: 解决方案: 也可以路径为(\xampp\apache\conf\extra\httpd-xampp.conf) 把如下标签中的Require local替换成Require all granted,然后大功告成! 注意:版本不同改法也不同. 以前是将 deny from al

Apache 403 错误。。

两个方面.. 一: httpd.conf  是否有 <directory '/www'></directory> 是否有  Deny from all 或者 Require local ...将其改为 Require all granted httpd-vhosts.conf 是否有  Deny from all 或者 Require local ...将其改为 Require all granted 原文地址:https://www.cnblogs.com/whm-blog/p/

一次apache出现403错误排查

客户的zhcp面板坏了,手动给他创建了apache配置 但是配置完成后一直访问不了,提示403错误. 手动编辑了phpinfo文件,但是仍然提示403 2.vim -O xxx.conf  common.conf 对比正常配置文件,发现没有什么问题 3.怀疑配置文件没有读取成功,手动在httpd.conf添加额外的Include /path/to/file ,重启apache 发现问题依旧 4.查看日志,发现有日志生成,说明配置文件有被读取,怀疑是仍然是配置问题 5.删除日志,重启apache,

apache服务器 403错误 禁止访问解决办法

打开网页,结果访问提示:403错误!关闭了IE的"显示友好的HTTP错误",显示没有权限访问(You don't have permission to access / on this server)! Apache,版本2.2.8,安装完成后,进行相关测试: 配置了下php的php.in文件,再次localhost打开发现错误: HTTP 错误 403 - 禁止访问,即403 Forbidden:You don't have permission to access / on thi

Apache问题(apache 提示403错误 You don&#39;t have permission to access /test.php on this server.)

<Files ~>AllowOverride AuthConfig FileInfo Indexs Limit OptionsOrder allow ,denyDeny from all-----------------注意:就是这儿!!--->把这行去掉或注释掉就行!!!</Files> Apache问题(apache 提示403错误 You don't have permission to access /test.php on this server.)

Apache服务器出现Forbidden 403错误提示的解决方法总结

在配置Linux的 Apache服务时,经常会遇到http403错误,我今天配置测试时也出现了,最后解决了,总结了一下.http 403错误是拒绝访问的意思,有很多原因的.还有,这些问题在win平台的Apache里一样会发生!我按照经验总结的主要有以下4种原因! 本人测试的环境 是:Scientific Linux 5.3(与RHEL和CentOS百分百兼容!),其它版本的Linux应该通用,没测试. 1. 访问的文档权限不够.要755以上权限.解决方法:用命令chmod 755 /var/ww