配置虚拟主机
Posted kevin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置虚拟主机相关的知识,希望对你有一定的参考价值。
u 把网站配置成虚拟主机 域名为 www.my.com
具体步骤如下:比如讲apache服务器127.0.0.1 配置成 www.sohu.com
- 首先在http.conf文件中 做如下处理:
①关闭默认的 #DocumentRoot "C:/Apache2.2/htdocs“
②启用httpd-vhosts.conf文件
# Virtual hosts 启用主机配置文件
Include conf/extra/httpd-vhosts.conf
2.在windows/system32/dirvers/etc/hosts文件中加入
127.0.0.1www.hanshunping.com
3.在httpd-vhosts.conf文件中加入:
--简单配置方式
<VirtualHost 127.0.0.1:80>
DocumentRoot "d:/myweb"
DirectoryIndex my.html index.html index.htm index.php
<Directory />
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
以上是关于配置虚拟主机的主要内容,如果未能解决你的问题,请参考以下文章