apache虚拟域名配置

背景

项目开发时,本地开发环境常常都会尽量和线上环境一致,那么问题来了,线上的每个模块往往都有域名,那么本地如何模拟这些呢?幸好,web服务软件早以想到这个问题了,无论apache还是nginx,都能轻松的配置。
博主使用的时apache,所以就讲下apache的虚拟域名配置。

apache虚拟域名配置

找到apache安装目录下的 httpd.conf文件,编辑

//先指定总根目录
DocumentRoot "C:/Program Files/Apache Software Foundation/Apache2.4/htdocs"

    Options Indexes FollowSymLinks
    AllowOverride All
    Require all granted

//打开vhost配置
# Virtual hosts
Include conf/extra/httpd-vhosts.conf

编辑conf/extra目录下的httpd-vhosts.conf


   ServerAdmin www.xxx.com
   DocumentRoot "C:/Program Files/Apache Software Foundation/Apache2.4/htdocs/xxx"
   ServerName xxx.xxx.com
   ErrorLog logs/dummy-host.xxx.com-error_log
   CustomLog logs/dummy-host.xxx.com-access_log common


最后编辑系统hostC:\Windows\System32\drivers\etc\hosts

本地hosts:
127.0.0.1       localhost
127.0.0.1       www.xxx.com

你可能感兴趣的:(apache虚拟域名配置)