1.Nginx location匹配规则
= /uri/ ——字符串精确匹配
^~ /uri/ ——字符串前缀匹配
~ /uri/ ——大小写区分的正则匹配
~* /uri/ ——大小写不区分的正则匹配
@ /uri/ ——命名location,只用于内部重定向请求
2.配置
location ~ ^/static/ {
root /home/http/django_project/myproject/;
expires 24h;
access_log off;
}
其中static目录位于myproject目录下