介绍thinkPHP配置虚拟域名简化URL路径
时间:2022-03-03 11:50
下面由thinkphp教程栏目给大家介绍thinkPHP配置虚拟域名简化URL路径,希望对需要的朋友有所帮助!
1. 打开apache下httpd.conf,把 Include conf/extra/httpd-vhosts.conf这句话前的#去掉,开启extra下的httpd-vhosts.conf
2.打开httpd-vhosts.conf,
<VirtualHost *:80> DocumentRoot "D:\workspace\PHP\thinkPHP\tp5full\public"(入口文件所在目录) ServerName z.cn(虚拟域名) </VirtualHost>
3.在host文件中添加 127.0.0.1 z.cn(即虚拟域名)。
重启Apache。。
存在的问题:
1.浏览器输入localhost,你会发现打开的是入口文件所在目录,这样会影响其他项目的开发。
解决办法:
1.打开httpd-vhosts.conf,
<VirtualHost *:80> DocumentRoot "D:\workspace\PHP"(网站根目录) ServerName localhost </VirtualHost>
即可。
相关推荐:最新的10个thinkphp视频教程
以上就是介绍thinkPHP配置虚拟域名简化URL路径的详细内容,更多请关注www.gxlsystem.com其它相关文章!