I have a problem with my redirections.
Basically, I get the name of the page using a page GET variable, like this:
index.php?page=page1, which I want to be accessed by page1.html
Then, if there are other get variables, I just want to append them, like this:
page1.html?var1=value1 points to index.php?page=page1&var1=value1
I tried the following:
RewriteRule ^([a-zA-Z]+)\.html$ index.php?page=$1 [L]
RewriteRule ^([a-zA-Z]+)\.html\?(.*)$ index.php?page=$1&$2 [L]
And I never seem to get any other get parameter than the page variable...
Thanks