1,服务器端apache的配置文件路径:/var/www/conf/httpd.conf
2,apache里面站点配置方法:
使用vi /var/www/conf/httpd.conf进入apache配置文件,修改下面的配置:
DocumentRoot /home/test/htdocs ---网页文件对应的主目录
ServerName test.com ---主机域名
ServerAlias www. test.com ---主机别名
#ErrorLog /usr/home/test/wwwlogs/error.log --记录错误日志文件路径#TransferLog /usr/home/test/wwwlogs/access.log --客户访问日志路径
修改完毕,保存上述配置.
3,重新启动apache,命令如下:/var/www/bin/apachectl restart,重启后就可以正常的浏览您的网页文件.