'APACHE: allow GET with AND without url rewriting

Here is my .htaccess

Options +FollowSymLinks
RewriteEngine on
RewriteBase /

ErrorDocument 404 /404.php

RewriteRule ^([a-zA-Z0-9-]+)?/?([a-zA-Z0-9-]+)?/?([a-zA-Z0-9-]+)?/?$ index.php?page=$1&lev2=$2&lev3=$3 [L]

This way the redirection is working awsome, but the "older" way (?page=page) doesn't work anymore.

Is there a way to allow both GET values ?

Thank you very much



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source