location = / {
[config A]
}
# 以什么开头
location ^~ /images/ {
[config B]
}
#
location ~*\.(gif|jpg|png|swf)$ {
[config C]
}
location /abc/def {
[config D]
}
location /abc {
[config E]
}
location / {
[config F]
}
1、设定图片访问目录
2、允许htm页面被访问
3、对目录进行处理
计算机网络/计算机科学与应用/系统/运维/开发
location = / {
[config A]
}
# 以什么开头
location ^~ /images/ {
[config B]
}
#
location ~*\.(gif|jpg|png|swf)$ {
[config C]
}
location /abc/def {
[config D]
}
location /abc {
[config E]
}
location / {
[config F]
}
1、设定图片访问目录
2、允许htm页面被访问
3、对目录进行处理
微信小程序 https://www.javascriptcn.com/interview-weixinapp/677f48463d78df11d950b260.html