nginx自动补全斜杠

网上找了一会,发现是没有补充端口号出现的问题

			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路径

上一篇:Nginx屏蔽或禁止指定来源网站访问


下一篇:Nginx动静分离;资源分离;rewrite重写、跳转、伪静态、规则、日志