关于apache2的虚拟主机
我的apache是httpd-2.0.52-12.ent,为什么没有办法做虚拟主机?
httpd.conf:
VirtualHost 192.168.1.80
<VirtualHost 192.168.1.80>;
DocumentRoot /var/www/html/phpArticle2
ServerName article.betrue.com.cn
</VirtualHost>;
# /etc/rc.d/init.d/httpd restart
Stopping httpd: [ OK ]
Starting httpd: Warning: DocumentRoot [/var/www/html/phpArticle2] does not exist
Warning: DocumentRoot [/var/www/html/phpArticle2] does not exist
[ OK ]
[root@betrue html]# ll
total 16
-rw-r--r-- 1 root root 15 Sep 7 23:40 index.html
drwxrwxrwx 8 root root 4096 Sep 8 21:11 phpArticle2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
DocumentRoot [/var/www/html/phpArticle2] does not exist
你定义的目录不存在
谢谢回复,不过这个目录明明是有的,当前目录就是/var/www/html。
是不是没有目录的访问权限。
这样设一下。
chown apache.apache /var/www -R
httpd.conf里面不是有例子吗,你找着做一下!