hey there,<p>i have a little issue with an Apache Redirect.<p>old url: domain.com/q.php?q=test&enter=enter<p>what i want: domain.com/suche/test<p>what i currently use:
RewriteCond %{QUERY_STRING} ^q=(.<i>)enter$ [NC]
RewriteRule ^q\.php$ /suche/%1? [NC,L,R=301]<p>which results in: domain.com/suche/test&enter<p>why is "^q=(.</i>)&$" not working as a condition?