I have a rule in the .htaccess file that makes a shorter URL:
RewriteRule ^job(.*)$ /include/myfile.incl.php?proj=$1 [NC,L] So the final URL looks like:
mydomain.com/jobXXXXXX I need to be able to add a token to the URL
mydomain.com/jobXXXXXX?token=123 How do I modify my rewrite rule to accept this value? Most of the time I won't have token present, but I need the rule overwrite to be flexible to accommodate it, in case I get it is the future.

QSAflag ~ wiki.apache.org/httpd/RewriteFlags/QSA