how to put special character for url param?
Posted
by KentZhou
on Stack Overflow
See other posts from Stack Overflow
or by KentZhou
Published on 2010-05-13T15:50:36Z
Indexed on
2010/05/13
15:54 UTC
Read the original article
Hit count: 288
html
|url-rewriting
following url will be fine:
http://localhost/mysite/mypage?param=123
if I want to put some special characters in param like ?, /, \, then the url looks like
http://localhost/mysite/mypage?param=a=?&b=/
or http://localhost/mysite/mypage?param=http://www.mysite.com/page2?a=\&b=...
it won't work. How to resolve this issue?
© Stack Overflow or respective owner