从参数中删除URL编码

时间:2015-09-04 10:19:29

标签: javascript .htaccess url

当我给出获取方法的输入时..

  

示例:http://google.com/

它返回

  网址中

/?domain = http%3A%2F%2Fgoogle.com%2F。

我想成功

  

/?domain = http://google.com/这样看起来不错。

我该如何改变?

是可以从PHP或必须使用javascript或.htaccess或任何其他?

1 个答案:

答案 0 :(得分:1)

通过javascript:

解码URI
decodeURIComponent("/?domain=http%3A%2F%2Fgoogle.com%2F")

返回"/?domain=http://google.com/"