• My website (http://maxEmbedded.com) is fully functional. But one specific post shows the redicted loop error:

    This webpage has a redirect loop
    ERR_TOO_MANY_REDIRECTS

    The post never loads even though it is published. Every other post/page on the website is loading just fine.

    Here’s the link to the post in question: http://maxembedded.com/2011/06/avr-timers-timer0/

    This is an old post from 2011, and this never happened before. Can someone help me with this?

    Thank you so much,
    Max

Viewing 1 replies (of 1 total)
  • InterServer

    (@interservernet-web-hosting)

    There could be a number of reasons for the issue.

    1: First check “Site URL” and “Address URL” from “Settings>>General” option in WordPress. If www is not added in the site URL and address URL of your website please add www on both and try again. If www is already added then remove www from both then try.

    2: Check .htaccess file is configured correctly. You can rename current .htaccess file to .htaccess.back then create a new one with default WordPress .htaccess rules as follows.

    # 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

    You can refer the following WordPresss documentation to get more information about WordPress .htaccess files.

    https://codex.wordpress.org/htaccess

    Note: After making the changes try to access Website after clearing your browser cache and cookies.

Viewing 1 replies (of 1 total)

The topic ‘Page shows Redicted Loop Error’ is closed to new replies.