欢迎来到代码驿站!

Linux

当前位置:首页 > 服务器 > Linux

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

时间:2022-07-11 10:13:29|栏目:Linux|点击:
修改配置文件 conf/httpd.conf
1.加入下面两句
NameVirtualHost *:80
Include conf/vhosts
2.在conf目录中建立vhosts目录
然后在 vhosts 目录下面建立相应的站点配置文件
如建立 hhj.jb51.net.conf 文件
内容:
复制代码 代码如下:

<VirtualHost *:80>
ServerAdmin hhj@live.it
ServerName www.hhj.jb51.net
ServerAlias hhj.jb51.net
DocumentRoot "F:\wwwroot\hhj.jb51.net"
DirectoryIndex index.html index.htm index.php
ErrorLog logs/hhj.jb51.net-error_log.log
CustomLog logs/hhj.jb51.net-access_log.log common
<Directory "F:\wwwroot\hhj.jb51.net">
AllowOverride All
Options FollowSymLinks
Order Deny,Allow
Allow from all
</Directory>
</VirtualHost>

3.重启apache服务

上一篇:Centos中root密码重置的实现及步骤详解

栏    目:Linux

下一篇:谈一谈Linux系统重要的子目录问题

本文标题:Apache 多站点虚拟主机配置方法

本文地址:http://www.codeinn.net/misctech/207452.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有