apache配置虚拟主机

走远了吗. 提交于 2020-02-01 05:21:47

步骤如下:

1.在配置文件httpd.conf中启用httpd-vhosts.conf

找到# Virtual hosts将Include conf/extra/httpd-vhosts.conf前的#去掉。

2.假设虚拟主机在f:/myblog(事先要存在该站点,可以是虚拟目录,可以是apache的站点文件)

3.设置httpd-vhosts.conf文件

#配置虚拟主机
<VirtualHost 127.0.0.1:80>
    DocumentRoot "f:/myblog"
    #配置欢迎页
    DirectoryIndex index.php index.html index.htm
    <Directory />
    Options FollowSymLinks
    #访问权限设置
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>
</VirtualHost>

4.修改hosts文件。添加ip和主机映射关系

C:\Windows\System32\drivers\etc\hosts.

添加本机ip      域名

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!