欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

apache虚拟域名的设置

程序员文章站 2022-03-25 17:33:14
...
1.在httpd.conf中开启Include conf/extra/httpd-vhosts.conf

2.修改C:\wamp64\bin\apache\apache2.4.17\conf\extra\httpd-vhost.conf,添加如下


    ServerAdmin project.com
    DocumentRoot "C:\wamp64\www\project"
    ServerName project.com
    ErrorLog "logs/dummy-host2.example.com-error.log"
    CustomLog "logs/dummy-host2.example.com-access.log" common
3.修改C:\Windows\System32\drivers\etc文件夹下的hosts文件,添加

127.0.0.1 project.com

以上就介绍了 apache虚拟域名的设置,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。