网上找了一会,发现是没有补充端口号出现的问题
server {
listen 8404;
location /android-app {
if (-d $request_filename){
rewrite ^/(.*)([^/])$ http://$host:8404/$1$2/ permanent;
}
root G:\code\work\js;
index index.html index.htm;
try_files $uri /android-app/index.html;
}
}
$host是当前端口,唯一修改的就是listen和rewrite的端口还是root路径