欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

nginx重定向路径

程序员文章站 2022-03-25 21:28:02
...
		location ~ (.*)\.html$ {
            rewrite "(.*)\.html" "$1.jsp" permanent;
        }

        location ~ (.*)\.jsp$ {
            default_type text/plain;
            return 200 'html to jsp';
        }