赞
踩
项目的路由使用的是history模式,需要配置try_files,但是这个项目的路径是二级路径所以坑就来了
location /mobile/ {
if ($request_uri ~* '/$|\.html$') {
add_header Cache-Control no-store;
}
root /opt/pumpkin/fronted/;
#alias /opt/pumpkin/fronted/mobile;
index index.html;
try_files $uri $uri/ /mobile/index.html;
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。