hello, i got a simple task and a problem.
i wanted my .htaccess to prepend "en" if it got a string like "/hotel/menu" not starting with /cs/ or /de/
but i get en/hotel/menu/menu :-0
and even if it starts with "cs" i get en/cs/hotel/menu/hotel/menu
how is this possible? it seems it loops somewhere...
RewriteCond %{REQUEST_URI} !^(cs|de)
RewriteRule ^(.*)$ en/$1
RewriteRule ^(.*)$ nfo.php?TEST=$1 [L]
can you show me a quick fix please?