I have over 2500 urls which is rewritten using mod_rewrite. They are as below:
^abc$ page.php?param1=poi¶m2=xsd
^xyz$ page.php?param1=ljk¶m2=qwe
Now if i pass additional parameters from the rewritten url, like,
domain.com/abc&extra=qwerty
i am unable to fetch them using the code below using
if($_GET['extra']<>''){
$extra = $_GET['extra'];
}
Also, domain.com/abc&extra=qwerty is redirecting me to my 404 error page.