Apache 多站点虚拟主机配置方法

Apache 多站点虚拟主机配置方法, 有这类需要的朋友可以参考下。

修改配置文件 conf/httpd.conf
1.加入下面两句
NameVirtualHost *:80
Include conf/vhosts
2.在conf目录中建立vhosts目录
然后在 vhosts 目录下面建立相应的站点配置文件
如建立 hhj.0133.cn.conf 文件
内容:
复制代码 代码如下:


ServerAdmin hhj@live.it
ServerName www.hhj.0133.cn
ServerAlias hhj.0133.cn
DocumentRoot "F:\wwwroot\hhj.0133.cn"
DirectoryIndex index.html index.htm index.php
ErrorLog logs/hhj.0133.cn-error_log.log
CustomLog logs/hhj.0133.cn-access_log.log common

AllowOverride All
Options FollowSymLinks
Order Deny,Allow
Allow from all



3.重启apache服务

以上就是Apache 多站点虚拟主机配置方法的详细内容,更多请关注0133技术站其它相关文章!

赞(0) 打赏
未经允许不得转载:0133技术站首页 » 服务器