Recently I migrated my websites to another server that are using ISPCP. But, I am getting some trouble, the variables that are passing in the URL aren’t being read.
Example:
the URL:
http://www.site.com/index.php?page=show.php&id=4030
should call “show.php” (show.php make a select in some table and show the result, it was working in the old server), but now this url just call “index.php” without interpret the parameters.
Is it some rewrite problem?
Apache log doenst show any error, it returns code 200… What is wrong?
The problem was in index.php
I just changed:
)
to
I just dont know why in the old server it was working…