I have a URL when I run my project.
http://localhost:8084/blog1_1/title?uname=55%22
and I want remove the query string from this URL like below:
http://localhost:8084/blog1_1/title
Can you please suggest me how to do this?
I have a URL when I run my project.
http://localhost:8084/blog1_1/title?uname=55%22
and I want remove the query string from this URL like below:
http://localhost:8084/blog1_1/title
Can you please suggest me how to do this?
Assuming the
url
is a java String:should do the trick...