I want to redirect all requests for subpages to the directory root. Unfortunately I only get redirect loops. Here is a sample of my .htaccess-file:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^parent-directory/.*$ /parent-directory [L,R=301]
Although I understand why there is a redirection loop I can’t think of a working solution despite searching for hours.