I want this url:
http://mysite.com/5.html => http://mysite.com/page.php?page=5
And this too must work:
http://mysite.com/5.html?foo=bar => http://mysite.com/page.php?page=5&foo=bar
How can I write that rule?
RewriteRule ^([0-9].*).html?(.*)$ page.php?page=$1&$2
doesn't quite work.
Thanks in advance,
Victor