我得到406 Not Acceptable
:
/process.php?return=http://blog
但不是:
/process.php?return=http//blog
唯一的区别是:
我该如何解决?
答案 0 :(得分:0)
你需要像%3A
一样逃避冒号:
/process.php?return=http%3A//blog
根据您对网址的操作,您可能还会发现使用%2F
转义斜杠是一个好主意:
/process.php?return=http%3A%2F%2Fblog
有关详细信息,请参阅此处的“保留字符”:http://www.blooberry.com/indexdot/html/topics/urlencoding.htm。