Reputation: 131
I have a URL:
http://missk.co.uk/index.php/admin/catalog_category/index/key/a47a4f77942acca6e40cdca9736d2a3d/
var_export($_GET) :
array ( '/index_php/admin/catalog_category/index/key/a47a4f77942acca6e40cdca9736d2a3d/' => '', )
Why I receive not the empty array though $ _GET has to give out parameters only after a question mark?
Upvotes: 0
Views: 45
Reputation: 15
I believe, that this is being caused by rewrite module in web server. Check your .htaccess file for RewriteRule.
Upvotes: 1