Linux下安装好apache和PHP后出现you do not have permission to access / on this server_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > Linux下安装好apache和PHP后出现you do not have permission to access / on this server

Linux下安装好apache和PHP后出现you do not have permission to access / on this server

 2012/4/10 13:52:00  mcj8089  程序员俱乐部  我要评论(0)
  • 摘要:百度、谷歌了很多资料,都没有解决,最后自己摸索出解决方案:1.切换到root身份2.在/var/www/下建一个目录test:mkdirtest3.修改/etc/httpd/conf/httpd.conf,将其中的修改DocumentRoot"/var/www/html"改为DocumentRoot"/var/www/test"4.修改<Directory"/var/www/html">为<Directory"/var/www/test">5.重启apache服务
  • 标签:Server Linux Access PHP 安装 not Apache

百度、谷歌了很多资料,都没有解决,最后自己摸索出解决方案:

?

1. 切换到root身份

?

2. 在/var/www/下建一个目录test: mkdir test

?

3. 修改/etc/httpd/conf/httpd.conf,将其中的修改DocumentRoot "/var/www/html"改为DocumentRoot "/var/www/test"

?

4. 修改<Directory "/var/www/html">为<Directory "/var/www/test">

?

5. 重启apache服务: service httpd restart

?

?

发表评论
用户名: 匿名