tags:

views:

2626

answers:

1

I'm working on a new Wordpress site that is exhibiting some strange behavior. I pass it a URL with GET parameters in it, and the $_GET parameter is not populated. I see in the $_SERVER parameter that the REQUEST_URI has the full URL there, completed with the ?var=value part, but no love in the $_GET variable.

The URL is being redirected with mod_rewrite, but given the fact that the REQUEST_URI shows the full thing, I'm thinking that's not the likely culprit.

Any other ideas?

+1  A: 

Taken care of. The content of the variable here was itself a URL, encoding it was sufficient to get it passed through. Could be it was picked off by some sort of security on the server.