Htacces Apache END Flag alternatywa

Napisałem mały framework (PHP) dla małych projektów, które w ogóle powinny być przekierowane do index.php? Path = $ 1, z wyjątkiem zdefiniowanych ścieżek. Z flagą END nie jest to problematyczne. Ale flaga END istnieje nadal od Apache 2.3, a skrypt powinien działać również na serwerach apache 2.2.

Czy ktoś ma pomysł, jak mogę to zrealizować bez flagi END?

RewriteEngine on

# Define static redicts
RewriteRule ^image/(.+)$ public/image/$1 [END,QSA]
RewriteRule ^css/(.+)$ public/css/$1 [END,QSA]
RewriteRule ^js/(.+)$ public/js/$1 [END,QSA]
RewriteRule ^lib/js/core/(.+)$ core/lib/js/$1 [END,QSA]
RewriteRule ^lib/js/(.+)$ public/lib/js/$1 [END,QSA]
RewriteRule ^cache/(.+)$ public/cache/$1 [END,QSA]
RewriteRule ^download/(.+)$ public/download/$1 [END,QSA]

# Define custom redicts
RewriteRule ^page/([0-9]+)$ index.php?path=index.php&page=$1 [END,QSA]

# Define all other redicts
RewriteRule ^(.+)$ index.php?path=$1 [L,QSA]

questionAnswers(1)

yourAnswerToTheQuestion