I am having a bit of trouble with not being able to pass a get variable when I'm using an htaccess file.
I have a rewrite rule that looks like this:
RewriteRule user/([0-9]+) user.php?uID=$1&user
And I have a small script that looks like this:
<?php if(isset($_GET['section'])){ /*DO STUFF HERE*/ } ?> //this doesn't run
The problem I'm having is if I go to for example:
www.example.com/user/2?section=info
the 'section' part of the URL won't get passed in.
[QSA]flag on theRewriteRule.