I\'m trying to create clean URLs on my website. Now I succeeded in configuring apache so every request like mysite.com/page will work. But I also want that requests
Add this rule above your existing rewrite rules to stop redirecting if the request has already been redirected once (ref):
RewriteCond %{ENV:REDIRECT_STATUS} 200 RewriteRule .* - [L]