系统host配置文件讲解
- host的位置
- host的作用
- host书写规范
Apache配置
httpd.conf 位置D:\xampp\apache\conf
作用:支持vhosts.conf配置
httpd-vhosts.conf 位置D:\xampp\apache\conf\extra
- 作用 将域名与目录进行绑定
- 示例
<VirtualHost *:80> // 80端口
ServerAdmin webmaster@dummy-host2.example.com
DocumentRoot "/xampp/htdocs/login" // 项目目录
ServerName www.demo.com //域名
ErrorLog "logs/dummy-host2.example.com-error.log" //错误日志目录
CustomLog "logs/dummy-host2.example.com-access.log" common //其他日志目录
</VirtualHost>