I have the following rules in my htaccess
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule .+ redirect.php [L]
RewriteRule ^(.*)\.(?!js|css|png)([^.]*)$ redirect.php [L]
everything works perfect except for one thing, the querystring.
for some reason the querystring disapper...
I got the following url myweb.com/subscribe?email=blablabla in redirect.php I have the following line:
echo $_GET['email']; //should echo the email
and it doesnt echo anything...
*I checked that it does rewrite to redirect.php
any Idea why and how to fix it?