apache配置虚拟域名

第一种办法:用wamp的图形界面

在浏览器输入http://localhost,打开wamp图形界面。下拉,在左下角找到,点击

apache配置虚拟域名_第1张图片

填写虚拟域名和代码所在路径

apache配置虚拟域名_第2张图片

第二种办法

在apache安装目录中打开httpd.conf文件,去掉mod_rewrite的注释。

在httpd.conf文件中去掉http-vhosts.conf的注释

在apache安装目录中打开httpd-vhosts.conf,添加如下代码apache配置虚拟域名_第3张图片

    ServerAdmin localhost

    DocumentRoot "d:/work/sites/demo/public"

    ServerName mydemo.com

    ErrorLog "logs/mydemo-error.log"

    CustomLog "logs/mydemo-access.log" common

      

              Options +Indexes +Includes +FollowSymLinks +MultiViews

              AllowOverride All

              Require local

      

进入C:\Windows\System32\drivers\etc,编辑hosts文件,添加 127.0.0.1 域名

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