当前位置:Gxlcms > mysql > apacheYoudon'thavepermissiontoaccess/onthis

apacheYoudon'thavepermissiontoaccess/onthis

时间:2021-07-01 10:21:17 帮助过:50人阅读

用linux源码安装Apache使用的虚拟主机的模式进行操作,几个相关的网站放在一个文件里,想法是通过网站列出的目录进行相应的网站进行操作,一切设置完成后,在浏览器中运行出现在You don't have permission to access / on this server. 这里定义了默认对网站根

用linux源码安装Apache使用的虚拟主机的模式进行操作,几个相关的网站放在一个文件里,想法是通过网站列出的目录进行相应的网站进行操作,一切设置完成后,在浏览器中运行出现在You don't have permission to access / on this server. 这里定义了默认对网站根的访问权限.

把这个

<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Directory>

改成

<Directory />
Options Indexes FollowSymLinks
AllowOverride None
Directory>

问题解决

人气教程排行