xampp虚拟主机如何配置?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
XAMPP有时候你需要一些顶级域名访问方式来访问你本地的项目也就是虚拟主机配置,这时候就需要配置虚拟主机,给你的目录绑定一个域名,实现多域名绑定访问。
一、修改httpd.conf
文件目录 xampp => apache =>conf => httpd.conf
1.在文件内搜索 关键字“httpd-vhosts.conf”,找到如下字段
# Virtual hosts Include conf/extra/httpd-vhosts.conf//确保此段开头没有#
2.在文件内搜索关键字“AllowOverride All”,找到如下字段
<Directory "D:/xampp/cgi-bin"> AllowOverride All Options None Require all granted </Directory> //修改为 <Directory "D:/xampp/cgi-bin"> Options Indexes FollowSymLinks Includes ExecCGI AllowOverride All Order allow,deny Allow from all </Directory>
3.搜索字段“DocumentRoot”,如下
DocumentRoot "D:/xampp/htdocs"//确保此处路径是你要访问的项目的根路径 ps:可以配置特定的根路径,比如: DocumentRoot "D:/www"
二、修改httpd-vhosts.conf
文件目录 xampp => apache =>conf => extra => httpd-vhosts.conf
文件最后面可看到如下
##<VirtualHost *:80> ##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 ##</VirtualHost>
1.用ip访问
<VirtualHost 127.0.0.5:80>//设置访问的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 </VirtualHost>
2.用ServerName访问
<VirtualHost *:80> ##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 </VirtualHost>
3.配置hosts文件
文件目录 C:\Windows\System32\drivers\etc\hosts 在文件中加入 127.0.0.1 testname.dev
看完上述内容,你们掌握xampp虚拟主机如何配置的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注亿速云行业资讯频道,感谢各位的阅读!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。