In my .htaccess, I have the following
RewriteEngine On
RewriteRule ^users/?$ users.php
RewriteRule ^users/([a-z]+)/?$ users.php?username=$1
Everything works as intended if I do
http://example.com/users/
http://example.com/users/joeschmoe/
and PHP will read "joeschmoe" as the value for
$_GET['username']
However, if I do
http://example.com/users/joeschmoe/?foo
PHP will not pick up
$_GET['foo']
Any idea why this is happening and how I can get it work? Thanks for your time!