I have a .htaccess file that routes all traffic through a frontloading index.php file using
Options +FollowSymLinks
RewriteEngine On
RewriteRule (.*) index.php?$1 [PT]
But the $_GET varaibles don’t get passed for some reason..
In the index.php when I var_dump the $_GET, all I get is
array(1) { ["index_php"]=> string(0) "" }
no matter what is in the query string.
What do I need to change?
Thanks!
Try this