如何配置xampp的虚拟主机
文章来源:
2019-04-02 11:47
发布者:刘俊
导读如何配置xampp的虚拟主机?XAMPP有时候你需要一些顶级域名访问方式来访问你本地的项目也就是虚拟主机配置,这时候就需要配置虚拟主机,给你的目录绑定一个域名,实现多域名绑定访问。一、修改httpd.
如何配置xampp的虚拟主机?XAMPP有时候你需要一些顶级域名访问方式来访问你本地的项目也就是虚拟主机配置,这时候就需要配置虚拟主机,给你的目录绑定一个域名,实现多域名绑定访问。
一、修改httpd.conf
文件目录 xampp => apache =>conf => httpd.conf
1.在文件内搜索 关键字“httpd-vhosts.conf”,找到如下字段
# Virtual hosts Include conf/extra/httpd-vhosts.conf//确保此段开头没有#
2.在文件内搜索关键字“AllowOverride All”,找到如下字段
AllowOverride All Options None Require all granted //修改为Options Indexes FollowSymlinks Includes ExecCGI AllowOverride All Order allow,deny Allow from all
3.搜索字段“documentRoot”,如下
documentRoot "D:/xampp/htdocs"//确保此处路径是你要访问的项目的根路径 ps:可以配置特定的根路径,比如: documentRoot "D:/www"
二、修改httpd-vhosts.conf
文件目录 xampp => apache =>conf => extra => httpd-vhosts.conf
文件最后面可看到如下
####ServerAdmin webmaster@dummy-host2.example.com ##documentRoot "D:/xampp/htdocs/dummy-host2.example.com" ##ServerName dummy-host2.example.com ##ErrorLog "logs/dummy-host2.example.com-error.log" ##CustomLog "logs/dummy-host2.example.com-access.log" common ##
1.用ip访问
//设置访问的ip ##ServerAdmin webmaster@dummy-host2.example.com documentRoot "D:/www"//你的项目文件目录 ServerName testname.dev//此项目的名称 ##ErrorLog "logs/dummy-host2.example.com-error.log" ##CustomLog "logs/dummy-host2.example.com-access.log" common
2.用ServerName访问
##ServerAdmin webmaster@dummy-host2.example.com documentRoot "D:/www"//你的项目文件目录 ServerName testname.dev//此项目的名称,通过此名称来访问项目,还需配置hosts文件 ##ErrorLog "logs/dummy-host2.example.com-error.log" ##CustomLog "logs/dummy-host2.example.com-access.log" common
3.配置hosts文件
文件目录 C:WindowsSystem32driversetchosts 在文件中加入 127.0.0.1 testname.dev
三、修改完记得重启aphache在进行访问
旺隆创业网虚拟主机入口:http://www.dlwanglong.cn/services/webhosting/
免责声明:本文章由会员“刘俊”发布如果文章侵权,请联系我们处理,本站仅提供信息存储空间服务如因作品内容、版权和其他问题请于本站联系
上一篇:
云空间虚拟主机哪个好
下一篇:
apache如何设置虚拟主机