Monday, November 29, 2021

Apache : Fix the Too Many Redirects Error Message

Issue : 

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.

Solutions:

Update .htaccess

# BEGIN WordPress

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

# END WordPress

Related Posts:

0 comments:

Post a Comment