location ~ (.*)\.html$ {
rewrite "(.*)\.html" "$1.jsp" permanent;
}
location ~ (.*)\.jsp$ {
default_type text/plain;
return 200 'html to jsp';
}
nginx重定向路径
最新推荐文章于 2025-02-14 23:14:24 发布
这篇博客探讨了URL重写规则的实现,如将.html文件重定向为.jsp,以及对.jsp文件的处理,返回特定HTTP状态码和内容,强调了服务器配置在网页处理中的关键作用。
3119

被折叠的 条评论
为什么被折叠?



