Hi, I have set up a URL rewriting rule for my website: Help with Code Tags (Toggle Plain Text) RewriteRule ^([A-Za-z]+)/([A-Za-z]+)\.html$ /main.php?Area=$1&Page=$2 RewriteRule ^([A-Za-z]+)/([A-Za-z]+)\.html$ /main.php?Area=$1&Page=$2 Which works fine if I request a page like http://mysite.com/folder/something.html it would show http://mysite.com/main.php?Area=folder&Page=something but I want to also be able to pass the rest of the query string so something like http://mysite.com/folder/something.html?Bob=Jim would pass the query string onto the main.php page like http://mysite.com/main.php?Area=fold...ething&Bob=Jim Is there a way to do this.
RewriteRule ^([A-Za-z]+)/([A-Za-z]+)\.html$ /main.php?Area=$1&Page=$2
RewriteRule ^([A-Za-z]+)/([A-Za-z]+)\.html$ /main.php?Area=$1&Page=$2 [PT,QSA]
RewriteRule ^([A-Za-z]+)/([A-Za-z]+)\.html$ /main.php?Area=$1&Page=$2 [QSA]