• Hi all,

    As the title says, the following website; https://taxileeds.com

    Only the homepage is working, all other ‘pages’ fail to load and I get a 500 Internal Server Error.

    I basically developed the website on https://taxileeds.com/demo and I have moved several websites from a subdirectory to the root and I did this one no different. Before I moved the site everything was working fine, it has only been since moving the site that I have had these problems.

    I moved the website as follows:-

    I updated the .htaccess file to the default:-

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

    I then moved all files from the directory /demo/ to the root directory.

    Finally I ran the following three scripts on the database:-

    UPDATE wp_options SET option_value = replace(option_value, 'https://www.taxileeds.com/demo', 'https://www.taxileeds.com') WHERE option_name = 'home' OR option_name = 'siteurl';
    
    UPDATE wp_posts SET guid = replace(guid, 'https://www.taxileeds.com/demo', 'https://www.taxileeds.com');
    
    UPDATE wp_posts SET post_content = replace(post_content, 'https://www.taxileeds.com/demo', 'https://www.taxileeds.com');

    I’ve had a look at the server error logs and this is what I can see:-

    AH00124: 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.
    AH00124: 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., referer https://taxileeds.com/about-us/

    Does anybody have any idea why this is happening and what I can do to resolve this?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator t-p

    (@t-p)

    Have you looked into this “probable configuration error.”

    Thread Starter naysilva

    (@naysilva)

    No idea what this is? Never come across this

    Moderator t-p

    (@t-p)

    Your error log suggests “probable configuration error.”

    If you are using a hosting provider, try discussing the issue with them.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Only home page is working, all other pages get 500 Internal Server Error’ is closed to new replies.