How do i get rid of .do and query string paths in urls of my application? Idea is to make site more SEO and user friendly.
I would like to make this path:
http://something.com/myaction.do?id=1&ground=B
into:
http://something.com/myaction/1/B
Any idea how do i get start? Thanks
It can be implemented by "URL rewriting", which can make your URL more friendly.
You can take a look at Tuckey urlrewrite, a Java web filter to rewrite URL.