Htaccess PHP会忽略除第一个之外的所有获取

时间:2014-05-11 04:05:17

标签: php .htaccess get

我的$GET参数可能是url,其他参数(mysite.co/index.php?q=anothersite.co?id=2),我需要忽略它们。

但是在转到网址之后我就迷失了(mysite.co/index.php?q=anothersite.co)

我如何解决它?没有解码网址。

1 个答案:

答案 0 :(得分:0)

您必须使用&而不是其他?

这应该有效

mysite.co/index.php?q=anothersite.co&id=2

编辑:

$encoded = encode("http://anothersite.co?id=2");

然后

mysite.co/index.php?q=$encode