环境:一个腾云服务器,装宝塔linux面包板,在面板软件中装了个nginx1.22.0
目标:
地址/test1加载一个静态网页,资源文件都在/www/server/my/test内
地址/test2加载另一个静态网页,资源文件都在/www/server/my/test2内
遇见问题:test2.html内代码的,无法访问/www/server/my/test/images内的图片。
是相对路径没填对?还是location设置有问题?或者用绝对路径应该怎么填?
nginx的location设置,如下
server
{
listen 80;
server_name localhost;
#error_page 404 /404.html;
include enable-php.conf;
location /{
root /wwwrver/my;
index home1.html;
}
location /test{
root /wwwrver/my;
index test.html;
}
location /test2{
root /wwwrver/my;
index test2.html;
}
location /images{
root /wwwrver/my/test2;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 12h;
}
location ~ /\.
{
deny all;
}
access_log /www/wwwlogs/access.log;
}
include /wwwrver/panel7host inx/*.conf;
}
文件路径,如下两图
html代码
代码为网上下载,的一个表白网页源码
这里遇见问题,"./images/图片"资源无法访问
问
1我配置文件location应该如何写,才能相对路径下访问图片资源?
2 test2.html内<images src=,应该如何写绝对路径才能访问图片资源?
问题图片
问题补充1
我用这样的链接可以访问到txt文本
地址/test2/images/imgtxt2.txt
但是用
地址/test2/images/001.png
显示这样
是被nginx的默认配置里面的某项拒绝了访问图片么?
server配置内容在前面
问题补充2
注释掉了这3个location之后就可以了
问这3句话有什么用呀?