问题由来,在安装好Apache后,不想使用默认网站根目录[DocumentRoot],便通过修改配置文件/etc/httpd/conf/httpd.conf 中的DocumentRoot来修改,然后访问之 出现Forbidden错误,便有了此文:
【此次配置httpd使用的是官网的CentOS-6.6-x86_64-bin-DVD1.iso】
一、问题重现:
1、创建新的目录文件:
1
2
3
4
5
6
|
[root@1inux /]#
mkdir
-pv /vhost/www/html
mkdir
: created directory `/vhost'
mkdir
: created directory `/vhost/www'
mkdir
: created directory `/vhost/www/html'
[root@1inux /]#
echo
"<h1> I LOVE LINUX </h1>"
> /vhost/www/html/index.html
[root@1inux /]#
|
2、修改配置文件:
2.1、 # vim /etc/httpd/conf/httpd.conf
1
2
|
将 默认的:#DocumentRoot
"/var/www/html"
修改为: DocumentRoot
"/vhost/www/html"
|
2.2、重启httpd服务
[root@1inux conf]# service httpd restart
Stopping httpd: [ OK ]
Starting httpd: [ OK ]
[root@1inux conf]#
发现拒绝访问:
1
2
3
4
|