Chromeは 、ウェブサイトへのアクセス中にERR_TOO_MANY_REDIRECTSエラーメッセージを表示することがあります。Google Chromeでウェブサイトを開いているときに同じ結果が得られる場合は、ここでいくつかの解決策を見つけることができます。 このエラーは、Firefoxでページが正しくリダイレクトされないという(The page isn’t redirecting properly)エラーに似ています。
エラーメッセージ全体に次のようなメッセージが表示されます-
This page isn’t working
[website-name.com] redirected you too many times.
Try clearing your cookies
ERR_TOO_MANY_REDIRECTS
参考までに、従う必要のあるソリューションには2つのタイプがあります。1つは、一部のソリューションは通常のユーザー向けです。2つ目は、残りはWebサイト管理者用です。
(ERR_TOO_MANY_REDIRECTS)Chromeで(Chrome)のERR_TOO_MANY_REDIRECTSエラー
ERR_TOO_MANY_REDIRECTSエラーが発生する場合(ERR_TOO_MANY_REDIRECTS)は、次の提案に従ってください。最初の7つの提案はエンドユーザー向けですが、残りはWebサイト管理者向けです。
- ハードリロード
- キャッシュとCookieをクリアする
- インターネット接続を変更する
- DNSキャッシュをフラッシュする
- 拡張機能を無効にする
- VPNを無効にする
- PCをスキャンしてマルウェア/アドウェアを探します
- (Check .htaccess)リダイレクトについては.htaccessファイルを確認してください
- WordPressのURLを確認してください
- SSLインストールを確認してください
- wp-config.phpファイルを確認してください
- キャッシュプラグインを無効にする
- デフォルトのテーマをアクティブにする
- CDNを無効にする
- (Remove)ルートディレクトリから疑わしいスクリプトを削除します
- リダイレクトプラグインを無効にする
これらのソリューションの詳細については、読み続けてください。
1]ハードリロード
ハード(Hard)リロードはサイトのキャッシュをクリアし、新しい訪問のようにページをロードします。したがって、Chromeブラウザの問題を解決できます。Google Chromeブラウザを使用している場合は、このチュートリアルに従って キャッシュを空にし、Chromeでウェブページをハードリロード(empty cache and hard reload a webpage in Chrome)できます。
2]キャッシュとCookieをクリアする
エラーメッセージに示されているように、キャッシュをクリアして、推奨される解決策を試す必要があります。特定のウェブサイトのCookieとキャッシュをクリアする(clearing cookies and cache for a specific website)代わりに 、すべてのサイトのChromeのキャッシュをクリア(clear the cache in Chrome for all sites)する必要 があります。
3]インターネット接続を変更する
時々、あなたのISPはいくつかの規制のために特定のウェブサイトをブロックします。その場合、状況によってはこのようなエラーメッセージが表示される可能性があります。イーサネット(Ethernet)接続を使用している場合は、モバイルホットスポットを使用してみてください。その逆も同様です。Web(Don)ページを更新する前に、ブラウザを再起動することを忘れないでください。
4]DNSキャッシュをフラッシュする
DNSキャッシュをフラッシュすると、(Flushing the DNS cache)この種の問題がすぐに解決されます。Webサイトの管理者が最近サーバーを変更し、その後に変更した場合、エラーメッセージが表示されたため、Webサイトにアクセスできません。このソリューションは魔法の杖のように機能します。
5]ブラウザ拡張機能を無効にする
ブラウザ(Browser)拡張機能は、ユーザーエクスペリエンスを向上させ、生産性を向上させることになっています。ただし、同じことがこのエラーメッセージを引き起こす可能性もあります。その場合は、すべての拡張機能を一度に無効にし(disable all extensions at once)て、すべての拡張機能の競合を一度に排除する必要があります。その後、Chromeブラウザを再起動して、Webサイトを開いてみてください。
6]VPNを無効にする
VPNアプリ(VPN app)を使用している場合は、 一時的に無効にしてみてください。時々、問題はVPNサーバーにあり、その結果、このエラーメッセージが表示されます。したがって、 (Therefore)VPNアプリをしばらくオフにして、匿名接続なしでWebサイトを閲覧してください。開いた場合は、VPNサポートに連絡して説明を求めてください。
7]マルウェア/アドウェアのPCをスキャンします
コンピューターにアドウェアまたはマルウェアが含まれている場合、Chromeや他のブラウザーでも同じ問題が発生する可能性があります。アドウェア/マルウェアは、設定やファイルに対して奇妙な動作をします。したがって、アンチウイルスでPCをスキャンする(scan your PC with an antivirus)ことを忘れないでください 。
これらの前述のソリューションはすべて、通常のコンピューターユーザー向けです。ただし、Webサイトの管理者であり、この問題を修正したい場合は、次の解決策が適しています。
8]リダイレクトについて.htaccessファイルを確認します(Check .htaccess)
最近、.htaccessファイルにいくつかのリダイレクト(wwwから非www、http://からhttps://など)を追加し、その後Webサイトにエラーメッセージが表示され始めた場合は、それらを削除することをお勧めします。言い換えれば、コードにはいくつかの問題があり、それらを修正する必要があります。これらについてわからない場合は、既存の.htaccessファイルをバックアップして、デフォルトのコードで保存してみてください-
# BEGIN WordPress
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
9]WordPressのURLを確認する
WordPressアドレス(URL)(WordPress Address (URL)) と サイトアドレス(URL)(Site Address (URL))の2つを常に修正する必要があり ます。これらのフィールドにスペルミスまたは間違ったドメイン拡張子(.com、.net、.orgなど)があります。同じエラーメッセージが表示されます。したがって、 WordPress(WordPress)ダッシュボード にログインし、Settings > Generalにアクセスします。ここでは、正しいURL(URLs)を入力する必要がある2つのフィールドを見つけることができます。
10]SSLインストールを確認します
ERR_TOO_MANY_REDIRECTSは 一般的なSSL接続エラーで あり、 (common SSL connection error, )SSLインストールを検証することで修正できます。WebサイトにSSL(SSL)証明書をインストールすると、 SSL証明書はhttp://からhttps://に移動します。ただし、証明書が正しく発行またはインストールされていない場合、このエラーが発生する可能性があります。したがって(Therefore)、すべてのステップを検証するために、インストールプロセス全体を実行してください。
11]wp-config.phpファイルを確認します
wp-config.phpは.htaccessファイルと同じくらい重要であり、どちらもサイトの重要な設定を保存します。このファイルでは、2つのことを見つけることができます-
define( 'WP_HOME', 'https://your-domain.com' );
define( 'WP_SITEURL', 'https://your-domain.com' );
(Make)これらの2つのURLが正しいことを確認してください。そうでない場合は、必要な変更を加えてください。
12]キャッシュプラグインを無効にする
できるだけ速くウェブサイトをロードすることは多くのウェブサイトデザイナーの究極の目標であり、キャッシュプラグインは彼らが持っている助けの1つです。ただし、キャッシュプラグインを誤って設定すると、このような問題が発生する場合があります。したがって、使用しているキャッシュプラグイン(W3 Total Cache、WP Rocket、WP Super Cacheなど)を無効にして、Webサイトをリロードします。正しく読み込まれる場合、問題を修正する方法は複数あります-
- ホスティング会社のサポートに、サーバーに互換性のあるキャッシュプラグインを提供するよう依頼してください。
- (Delete)プラグインに関連するsite_transientエントリを含む、キャッシュプラグインのすべてのファイルを削除します。
次に、新しいバージョンでインストール手順を実行できます。
13]デフォルトのテーマをアクティブにする
このテーマにより、Webサイトは他のWebサイトとは異なって見え、読者にとってより良い読書環境になります。ただし、nullまたは海賊版のテーマを使用すると、いくつかの問題が発生する可能性があります。nullのテーマだけでなく、この問題は元のコピーで発生する可能性があります。したがって、 WordPress(WordPress)のすべての新しいメジャーバージョンで取得するデフォルトのテーマをアクティブ化してみてください。問題が解決したら、header.php、functions.php、index.phpなどのいくつかのファイルをチェックします。
14]CDNを無効にする
CDNまたはコンテンツ配信ネットワーク(Content Delivery Network)は、Webサイトに読者向けの大量のメディアファイルが含まれている場合に便利です。ただし、CDNインストールにNSまたはDNSの競合がある場合、Webサイトで元のページの代わりにこのエラーメッセージが表示される可能性があります。したがって、自分自身を確認するか、専門家の助けを求めてください。
15]ルートディレクトリから疑わしいスクリプトを削除します(Remove)
Webサイトはさまざまな方法で攻撃される可能性があるため、ルートディレクトリ内のファイルを常に監視することをお勧めします。デフォルトのWordPressインストールファイルをダウンロードして、インストールと比較できます。疑わしいものを見つけた場合は、それを検索して、プラグイン、テーマ、またはその他のものがあるかどうかを確認してください。
16]リダイレクトプラグインを無効にする
多くの人は、301リダイレクションまたはアフィリエイトリンククローキングを設定するためにリダイレクションプラグインを使用することがよくあります。ただし、同じことが問題を引き起こす可能性もあります。したがって、そのようなプラグインを使用して既存のページを別のページにリダイレクトしている場合は、それを非アクティブにして、Webページのロードを再試行することをお勧めします。
これらは、問題を修正するために使用できる実用的なソリューションの一部です。彼らが助けてくれることを願っ(Hope)ています。
ERR_TOO_MANY_REDIRECTS, This page isn’t working on Chrome
At times, Chrome shows ERR_TOO_MANY_REDIRECTS error message while accessing a website. If you are getting the same while opening any website on Google Chrome, you may find some solutions here. This error is similar to The page isn’t redirecting properly error on Firefox.
The entire error message says something like this-
This page isn’t working
[website-name.com] redirected you too many times.
Try clearing your cookies
ERR_TOO_MANY_REDIRECTS
For your information, there are two types of solutions you should follow. One, some solutions are for a regular user. Two, the rest of them are for a website admin.
ERR_TOO_MANY_REDIRECTS error on Chrome
To ERR_TOO_MANY_REDIRECTS error, follow these suggestions. The first 7 suggestions are meant for end-users whereas the rest are for website administrators:
- Hard reload
- Clear cache and cookies
- Change internet connection
- Flush DNS cache
- Disable extensions
- Disable VPN
- Scan PC for malware/adware
- Check .htaccess file for redirection
- Check WordPress URL
- Check SSL installation
- Check wp-config.php file
- Disable cache plugin
- Activate default theme
- Disable CDN
- Remove suspicious scripts from root directory
- Disable redirection plugin
Keep reading to learn more about these solutions.
1] Hard reload
Hard reload clears the cache for the site and loads the page like a fresh visit. Therefore, it can solve the issue on your Chrome browser. As you are using Google Chrome browser, you can follow this tutorial to empty cache and hard reload a webpage in Chrome.
2] Clear cache and cookies
As the error message says, you should try the recommended solutions, clearing the cache. Instead of clearing cookies and cache for a specific website, you should clear the cache in Chrome for all sites.
3] Change internet connection
At times, your ISP blocks a specific website for some regulations. If it happens, there is a chance of getting such an error message in some situations. If you are using an Ethernet connection, try using a mobile hotspot or vice versa. Don’t forget to restart your browser before refreshing the webpage.
4] Flush DNS cache
Flushing the DNS cache solves these kinds of issues immediately. If the website admin recently changed the server and following that, you can’t access the website because of the error message; this solution works like a magic wand.
5] Disable browser extensions
Browser extensions are supposed to improve the user experience and increase productivity. However, the same thing can cause this error message as well. If that is the case, you should disable all extensions at once to eliminate all extension conflicts at once. Following that, restart the Chrome browser and try to open the website.
6] Disable VPN
If you are using a VPN app, try disabling it temporarily. At times, the problem lies in the VPN server, and as a result, you encounter this error message. Therefore, turn off your VPN app for a moment, and browse the website without an anonymous connection. If it opens, contact the VPN support for clarification.
7] Scan PC for malware/adware
If your computer has adware or malware, you may find the same issue on Chrome and other browsers. An adware/malware acts weirdly with your settings and files. Therefore, don’t forget to scan your PC with an antivirus.
All these aforementioned solutions are for a regular computer user. However, if you are a website admin and want to fix this issue, the following solutions are for you.
8] Check .htaccess file for redirection
If you recently added some redirections (www to non-www, http:// to https://, etc.) in the .htaccess file, and the website started showing the error message after that, it is better to remove them. In other terms, your code has some issues, and you need to fix them. In case you do not know about these, try to backup your existing .htaccess file and save it with the default codes-
# BEGIN WordPress
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
9] Check WordPress URL
Two things need to be correct all the time- WordPress Address (URL) and Site Address (URL). There is a spelling mistake or wrong domain extension (.com, .net, .org, etc.) in those fields; you can find the same error message. Therefore, log into your WordPress dashboard, and visit Settings > General. Here you can find those two fields where you have to enter the correct URLs.
10] Check SSL installation
ERR_TOO_MANY_REDIRECTS is a common SSL connection error, and it can be fixed by validating the SSL installation. When you install an SSL certificate on your website, it moves from http:// to https://. However, if the certificate isn’t issued or installed correctly, this error might occur. Therefore, go through the entire installation process to validate all the steps.
11] Check wp-config.php file
wp-config.php is as important as the .htaccess file and both store important settings for your site. In this file, you can find two things-
define( 'WP_HOME', 'https://your-domain.com' );
define( 'WP_SITEURL', 'https://your-domain.com' );
Make sure these two URLs are correct. If not, do make the necessary changes.
12] Disable cache plugin
Loading a website as fast as possible is the ultimate goal of many website designers, and the cache plugin is one of the helping hands they have. However, if you set up the cache plugin incorrectly, such an issue might occur at times. Therefore, deactivate whatever cache plugin (W3 Total Cache, WP Rocket, WP Super Cache, etc.) you are using and reload your website. If it loads correctly, you have multiple ways to fix the issue-
- Ask the hosting company’s support to provide a compatible cache plugin for their server.
- Delete all files of the cache plugin, including the site_transient entries related to the plugin.
Then, you can go through the installation steps with a fresh version.
13] Activate default theme
The theme makes the website look different from others and a better reading environment for the readers. However, if you use a nulled or pirated theme, it can cause some issues. Not only nulled themes but also this problem can occur with an original copy. Therefore, try to activate the default theme that you get with every new major version of WordPress. If it solves your issue, it’s time to check a few files, including header.php, functions.php, index.php, etc.
14] Disable CDN
CDN or Content Delivery Network is handy when your website contains tons of media files for the readers. However, if the CDN installation has some NS or DNS conflicts, your website can end up showing this error message instead of the original page. Therefore, check yourself or ask for a professional’s help.
15] Remove suspicious scripts from root directory
Your website can get attacked in different ways, and it is always wise to keep an eye on the files in your root directory. You can download the default WordPress installation file and compare it with your installation. If you find anything suspicious, search for it to know if it is there for a plugin, theme, or anything else.
16] Disable redirection plugin
Many people often use a redirection plugin for setting up a 301 redirection or affiliate link cloaking. However, the same can cause the issue as well. Therefore, if you are using such a plugin to redirect an existing page to another one, it is better to deactivate that and try loading the webpage again.
These are some of the working solutions you can use to fix the issue. Hope they help.