nginx重定向路径

		location ~ (.*)\.html$ {
            rewrite "(.*)\.html" "$1.jsp" permanent;
        }

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

你可能感兴趣的:(每天进步一点,java,nginx)