Ahmad Naser Turnkey Ecosystem Ahmad Naser
July 4, 2019

fix WordPress Request exceeded the limit of 10 internal redirects

Published in the Ahmad Naser ecosystem. Estimated reading time: 1 minute.

change your htaccess from


RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

to the following:


  RewriteEngine On
   RewriteBase /
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteRule ^(.+)$ /index.php/$1 [L,QSA]

Leave a Reply

Your email address will not be published. Required fields are marked *