ERR_TOO_MANY_REDIRECTS Error on WordPress
ERR_TOO_MANY_REDIRECTS error is one of the most familiar error in WordPress occurred due to server misconfiguration, redirection functionality of plugin or improper WordPress setting. This error makes your website look into redirection loop and the website will continue the redirection from one page to another. WordPress Plugins are the main cause of this error. This error is usually displayed in Google Chrome as “This Webpage has a redirect loop”. In Mozilla Firefox this error is displayed as “The page isn’t redirecting properly”. You can solve this error easily with the following steps.
Check whether the WordPress Address (URL) and Site Address (URL) has the accurate information. The URL or address should be http://mydomain.com where mydomain.com is the actual domain name. After checking the URL save the changes with the Save Changes button.
Save the changes with the Save Changes button. Check whether the ERR_TOO_MANY_REDIRECTS error is fixed or not.
To save changes, click Save Changes button. After renaming the plugin go to the website, if the error is fixed then the reason for the error will be one or more corrupted or outdated plugins.
Remove those plugin and rename the folder to Plugins in each folder.
This file may have few incorrect redirection rules and that may be conflicted with some other rules. You are allowed to rename the file using Edit option.
Replace contents of the .htaccess file with the above rules. If your website works with this rules then the error is caused by the incorrect .htaccess rules. After solving the error change the content to default rules.
ERR_TOO_MANY_REDIRECTS error is one of the most familiar error in WordPress occurred due to server misconfiguration, redirection functionality of plugin or improper WordPress setting. This error makes your website look into redirection loop and the website will continue the redirection from one page to another. WordPress Plugins are the main cause of this error. This error is usually displayed in Google Chrome as “This Webpage has a redirect loop”. In Mozilla Firefox this error is displayed as “The page isn’t redirecting properly”. You can solve this error easily with the following steps.
- Clearing Your Web Browser’s Cache
- Checking your WordPress URL Setting
- Administrator Dashboard
Check whether the WordPress Address (URL) and Site Address (URL) has the accurate information. The URL or address should be http://mydomain.com where mydomain.com is the actual domain name. After checking the URL save the changes with the Save Changes button.
- Manually
Code:
define('WP_HOME','http://mydomain.com');
define('WP_SITEURL','http://mydomain.com');
Save the changes with the Save Changes button. Check whether the ERR_TOO_MANY_REDIRECTS error is fixed or not.
- Check Your Plugins
To save changes, click Save Changes button. After renaming the plugin go to the website, if the error is fixed then the reason for the error will be one or more corrupted or outdated plugins.
Remove those plugin and rename the folder to Plugins in each folder.
- Check Your .htaccess file
This file may have few incorrect redirection rules and that may be conflicted with some other rules. You are allowed to rename the file using Edit option.
Code:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END Wordpress