thinkPHP配置虚拟域名简化URL路径

1. 打开apache下httpd.conf,把 Include conf/extra/httpd-vhosts.conf这句话前的#去掉,开启extra下的httpd-vhosts.conf

2.打开httpd-vhosts.conf,

    
        DocumentRoot "D:\workspace\PHP\thinkPHP\tp5full\public"(入口文件所在目录)
        ServerName z.cn(虚拟域名)

    

3.在host文件中添加   127.0.0.1   z.cn(即虚拟域名)。

重启Apache。。

存在的问题:

1.浏览器输入localhost,你会发现打开的是入口文件所在目录,这样会影响其他项目的开发。

解决办法:

1.打开httpd-vhosts.conf,

    
        DocumentRoot "D:\workspace\PHP"(网站根目录)
        ServerName localhost

    

即可


你可能感兴趣的:(thinkPHP)