开发技术学习 »
服务器 » apache出现You don't have permission to access / on this server. 提示
apache出现You don't have permission to access / on this server. 提示
今天在新的linux上跑原来的代码,使用的虚拟主机的模式进行操作。几个相关的网站放在一个文件里,想法是通过网站列出的目录进行相应的网站进行操作。一切设置完成后,在浏览器中运行出现在You don't have permission to access / on this server. 提示。查了一下apache手册找到问题所在处。这里定义了默认对网站根的访问权限。
[html]
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
[/html]
这里改成
[html]
<Directory />
Options Indexes FollowSymLinks
AllowOverride None
</Directory>
[/html]
问题解决
您可能还会对这些文章感兴趣!
- uniapp苹果ios内购,ios支付,苹果支付内购(1543 +)
- eclipse git分支管理(2733 +)
- 分析网站 htaccess文件不起作用的原因与解决方法(3855 +)
- js 获取文本焦点,js将焦点置于文本最后(3557 +)
- apache24 添加到windows服务(2945 +)
- httpwatch使用教程,httpwatch工具简介,httpwatch调试(4311 +)
- CentOS更新yum源,CentOS 163源更新方法与地址,CentOS国内源(3190 +)
- centos进程cpu统计,apache使用内存&cpu情况统计脚本(3288 +)
- php gd库制图,文字水印自动换行,数据不固定(3501 +)
- wordpress防垃圾留言插件,wordpress验证码插件,wordpress防垃圾评论(3767 +)