Recent Posts
- How to Reject a Job Offer Nicely
- The 5 Best Domain Name Registrars: Compare and Choose What’s Right For You
- Best Chrome Extensions to Help You Manage Your Inbox Like a Pro
- Top 10 Chrome Extensions for Finding Coupons and Good Deals: Save Money and Time While Shopping Online
- QR Codes Risk: How Hackers Can Rob You
Recent Posts
- How to Reject a Job Offer Nicely
- The 5 Best Domain Name Registrars: Compare and Choose What’s Right For You
- Best Chrome Extensions to Help You Manage Your Inbox Like a Pro
- Top 10 Chrome Extensions for Finding Coupons and Good Deals: Save Money and Time While Shopping Online
- QR Codes Risk: How Hackers Can Rob You
Recent Comments
Categories
- Affliate Program (4)
- Best (29)
- Blogging (3)
- Cryptocurrency (1)
- Facebook (7)
- Fashion (1)
- Google Ads (1)
- How To (28)
- Instagram (3)
- Make Money Online (6)
- Online Marketing (13)
- Personal Development (5)
- PowerPoint Template (1)
- SEO (13)
- Social Media (17)
- Template (1)
- Twitter (2)
- Uncategorized (3)
- Website (17)
- WordPress (6)
- Youtube (1)
Affiliate Program ASMR Youtuber Blogging BMP CDN Provider Clear cache in WordPress Cookies CR2 File DAE Discord EPS EPUB Flowchart Software Font Recognizer hihaho Instagram Instagram Downloader M4A M4B Make Money Online Marketing Funnel Martech MP4V ODT File Password Manager PDF Password Remover PowerPoint Template RTF File Format SEO Slug Social Media SSL SVG SWF TAR Text-To-Speech TIF file TLS Twitter URL shortener Web Browser WEB SAFE FONT XLM XLSX YouTube Vanced
How to Solve WordPress ERR_TOO_MANY_REDIRECTS Errors
ERR_TOO_MANY_REDIRECTS. This is a common error in WordPress installations. This error is divided into two types, one for installation and one for normal use. The installation problem is relatively easy to solve. In the installation process, enter the domain name /wp-admin/install.php, that is, directly access install.php. This way you can bypass the error and complete the installation.
In the second case, a circular redirect occurs under normal use conditions.
There are many different causes for this one.
Type 1: Caused by Https, remove HTTPS temporarily. Then reconfigure HTTPS in the correct way and configure Https access in Config.php.
Type 2: Indeed too many redirects, for example, you set Https. then the domain without WWW redirected to www, but you wrote another redirect in the htaccess file, or you set a third redirect in the server backend. Or maybe you set a redirect on the control panel of the domain. In short, it’s really caused by too many redirects. Here’s where you need to remove those redirects.
Type 3: Caused by repeated installation of various themes. Here you need to find the wp-include folder, open the template-loader.php file and find the following code (usually in the first few rows, divided into two lines)
if ( defined(‘WP_USE_THEMES’) && WP_USE_THEMES );
do_action(‘template_redirect’);
Comment out these two lines of code. Then you can resume normal access.
Type 4: WordPress circular redirect
This one is usually caused by WordPress installation error.
Find the functions.php file under your current theme folder and add the following line of code at the end: (note that it must be under the current theme folder)
remove_filter(‘template_redirect’, ‘redirect_canonical’);
Type 5. Too many frontend redirects, but the backend is still accessible
And you don’t know the code. So here’s where you need to install the plugin.
Permalink Fix & Disable Canonical Redirects Pack
Note that you have to download it in the WordPress Marketplace. Install it and you’re done.
Related posts:
Related