Windows配置本地域名

1. hosts文件   C:\Windows\System32\drivers\etc

添加如下代码:

127.0.0.1      www.blog.com

127.0.0.1      blog.com

2. 修改Apache中的httpd.conf文件

Include conf/extra/httpd-vhosts.conf去掉前面的’ # ’

3、找到httpd-vhosts.conf文件(-)

然后添加以下内容

 

    ServerAdmin [email protected]  

    DocumentRoot "F:\web\www\laravel\blog\public\index.php"    //这个为您的项目目录  

    ServerName www.blog.com                       //这个为您在host中配置  

    ErrorLog "logs/dummy-host2.example.com-error.log"  

    CustomLog "logs/dummy-host2.example.com-access.log" common  

Httpd.conf中目录的含义:

http://blog.csdn.net/u011685720/article/details/48680203

 

httpd-vhosts.conf上面有一行

DocumentRoot "${SRVROOT}/htdocs"

 

DocumentRoot "${SRVROOT}/htdocs"改成 DocumentRoot "F:\web\www"(你自己定义的web根目录)

 

打开浏览器,访问www.blog.com


Windows配置本地域名_第1张图片

你可能感兴趣的:(Apache,本地域名,php环境配置)