1

如何更改以下 JSP:

http://localhost/test/user/people/something.do?method=delete

对此:

http://localhost/test/user/people/

?

4

1 回答 1

1

您需要查看 URL 重写。有两种流行的解决方案。

  1. 基于 Apache 的mod_rewrite
  2. 基于 Servlet 过滤器的UrlRewriteFilter

您可以公开一个 URL,例如http://www.example.com/test/user/profile/delete并将其在内部重新写入http://www.example.com/test/user/profile/something.do?method=delete。

于 2012-05-21T14:14:38.463 回答