request exceeded the limit of redirects
-
So, I get an error: H00124: Request exceeded the limit of 10 internal redirects due to probable configuration error. Use ‘LimitInternalRecursion’ to increase the limit if necessary. Use ‘LogLevel debug’ to get a backtrace.
I am on rhel 7.9, wordpress is fully updated. I do use wordfence for security. I don’t know a ton about apache, enough for changes, ect. However, I don’t think this is apache. As I have other WP sites running on the same server, and they do not have this error. So, my guess is it’s the .htaccess file. Can someone look and see if they notice something screwy? Thanks!
RewriteEngine On RewriteBase / #uploaded files RewriteRule ^(.*/)?files/$ index.php [L] RewriteCond %{REQUEST_URI} !.*wp-content/plugins.* RewriteRule ^(.*/)?files/(.*) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteCond %{REQUEST_URI} ^.*/wp-admin$ RewriteRule ^(.+)$ $1/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule . - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L] #RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ - [L] RewriteRule . index.php [L] <IfModule mod_security.c> <Files async-upload.php> SecFilterEngine Off SecFilterScanPOST Off </Files> </IfModule> # Wordfence WAF <IfModule mod_php5.c> php_value auto_prepend_file '/var/www/html/blog/wordfence-waf.php' </IfModule> <IfModule mod_php7.c> php_value auto_prepend_file '/var/www/html/blog/wordfence-waf.php' </IfModule> <IfModule mod_php.c> php_value auto_prepend_file '/var/www/html/blog/wordfence-waf.php' </IfModule> <Files ".user.ini"> <IfModule mod_authz_core.c> Require all denied </IfModule> <IfModule !mod_authz_core.c> Order deny,allow Deny from all </IfModule> </Files>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘request exceeded the limit of redirects’ is closed to new replies.