当前位置:Gxlcms > PHP教程 > nginxlocationroot设立虚拟目录

nginxlocationroot设立虚拟目录

时间:2021-07-01 10:21:17 帮助过:34人阅读

nginx location root 设置虚拟目录
server{
.....
location /t/ {
root /data/www;
}
}

http://localhost/t/a.jpg 想访问到 /data/www/t/a.jpg 但是404 Not found
------解决思路----------------------
用别名

/home/wwwroot/default/img/; 就是图片真是存在的目录

http://192.168.1.227/image/a.jpg,工作目录下是没有image这个文件夹的

人气教程排行