Bootstrap

phpstudy中nginx环境配置虚拟域名站点

(1)首先打开host文件,里面加上一条

127.0.0.1    www.tp.com

随便换上虚拟域名

(2)然后在phpstudy中添加域名

(3)修改配置文件

打开phpstudy的nginx站点配置文件

C:\phpStudy\PHPTutorial\nginx\conf\vhosts.conf

把里面root 后面的路径中的 \ 换成 /

root   "C:\phpStudy\PHPTutorial\WWW\tp\public";

换成

root   "C:/phpStudy/PHPTutorial/WWW/tp/public";

;