I have a form like this to send a utf-8 string parameter.
<form rel="search" action="/archives" method="get">
<input name="key" type="text" value="تست" />
<input type="submit" value="submit" />
</form>
But the url changes to
http://localhost/archives?key=%26%231578%3B%26%231587%3B%26%231578%3B
and value of this parameters in destination is wrong: *3*
Is there a way to avoide encode in url like this: http://localhost/archives?key=تست
because if I enter http://localhost/archives?key=تست
in my browser,value of this parameters in destination is true...also encode stirng is ugly in the url