Home > Backend Development > PHP Tutorial > nginx location root 设置虚拟目录

nginx location root 设置虚拟目录

WBOY
Release: 2016-06-23 13:30:48
Original
1503 people have browsed it

server{
       .....
       location /t/  {
                 root  /data/www;
       }
}

http://localhost/t/a.jpg 想访问到 /data/www/t/a.jpg   但是404 Not found


回复讨论(解决方案)

配置 root


location / {

不是配置根目录   是 /t/ 目录  
其实是打算/image/目录   正常可能是 http://localhost/image/a.jpg   => /data/image/a.jpg
想要改成  http://localhost/image/a.jpg   => /data/www/image/a.jpg

用别名

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

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

用别名

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

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


那就是可以的
两个nginx配置都没有成功,root 和alias都试过   比较怪异

配置你的server_name,确定它用的是你配置的这个server,你可以设置虚拟主机名来试试

配置你的server_name,确定它用的是你配置的这个server,你可以设置虚拟主机名来试试



原来是
location ~ .*\.(swf|gif|jpeg|jpg|png)$ {
                expires 30d;
}
这句影响了

好吧....还真没试过这样的

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template