如何更改以下 JSP:
http://localhost/test/user/people/something.do?method=delete
对此:
http://localhost/test/user/people/
?
如何更改以下 JSP:
http://localhost/test/user/people/something.do?method=delete
对此:
http://localhost/test/user/people/
?
您需要查看 URL 重写。有两种流行的解决方案。
您可以公开一个 URL,例如http://www.example.com/test/user/profile/delete
并将其在内部重新写入http://www.example.com/test/user/profile
/something.do?method=delete。