码迷,mamicode.com
首页 > Web开发 > 详细

CentOS Linux系统下更改Apache默认网站目录

时间:2016-07-11 14:06:28      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

引言:

Apache默认的网站目录是在/var/www/html,我们现在要把网站目录更改到/home/wwwroot/web1/htdocs,操作如下

准备工作:

创建目录:

cd /home
mkdir wwwroot
cd wwwroot
mkdir web1
cd web1
mkdir htdocs
touch index.php

操作步骤:

1、vi /etc/httpd/conf/httpd.conf

找到 DocumentRoot  "/var/www/html" 这一段     #apache的根目录

把/var/www/html 这个目录改为/home/wwwroot/web1/htdocs

再找到 <Directory "/var/www/html">   #定义apache /var/www/html这个区域

把 /var/www/html改成/home/wwwroot/web1/htdocs

这样我们就把apahce的默认路径改掉了

service httpd restart  #重启Apache服务器

2、访问localhost的时候,会发现访问拒绝,这是为什么呢?

主要是因为你的/home/wwwroot/web1/htdocs的权限是750,apache这个用户没有权限访问,你需要更改掉权限,可以这样改

chmod -R 755 /home/wwwroot/web1/htdocs

然后去访问 发现正常运行了(apache的用户:apache 运行apache的组:apache)

至此,Apache默认网站目录更改成功。

使用备注:
个人CentOS网站目录改成 “ /home/jianbao/www/html ”

 

 

延伸阅读:

Linux更改Apache默认网站目录出错,Document root must be a directory的解决办法

 

CentOS Linux系统下更改Apache默认网站目录

标签:

原文地址:http://www.cnblogs.com/52php/p/5659846.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!