在xampp中配置域名绑定的方法:1.xampp安装目录打开httpd-vhosts.conf 文件;2.在文件中添加代码配置;3.系统盘打开hosts文件;4.在文件根据原有格式添加httpd-vhosts.conf文件中绑定的域名,保存即可;
在xampp中配置域名绑定的方法
1.首先,计算机中进入xampp安装目录;
2.进入到xampp安装目录后,在目录中查找到httpd-vhosts.conf 文件,并使用记事本打开;
3.httpd-vhosts.conf 文件打开后,在文件添加以下配置;
ServerAdmin yang@21cn.com
DocumentRoot "C:/xampp/htdocs/" #域名目录
ServerName baidu.com #需要绑定的域名
ServerAlias www.baidu.com #域名别名
ErrorLog "logs/localhost-error.log"
CustomLog "logs/localhost-access.log" combined
Options Indexes FollowSymLinks
AllowOverride all
Order Allow,Deny
Allow from all
4.httpd-vhosts.conf文件配置好后,在计算机中打开系统磁盘;
5.进入到系统磁盘后,在磁盘中查找到hosts文件,并使用记事本打开,hosts文件位置:C:\WINDOWS\system32\drivers\etc;
6.查找hosts文件后,使用记事本打开;
7.最后,hosts文件打开后,在文件中根据原有格式添加httpd-vhosts.conf文件中绑定的域名,保存即可;
127.0.0.1 www.baidu.com