• I installed WPMS with subfolders. On the local server(Denwer) everthing work fine, but on the hosting my site crashed time to time – server logs show me same problem, but for different files – “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.”

    My wp-config.php
    define(‘WP_DEBUG’, false);
    define(‘WP_DEBUG_LOG’, true);
    define(‘WP_ALLOW_MULTISITE’, true);

    define(‘MULTISITE’, true);
    define(‘SUBDOMAIN_INSTALL’, false);
    define(‘DOMAIN_CURRENT_SITE’, ‘sansaway.info’);
    define(‘PATH_CURRENT_SITE’, ‘/’);
    define(‘SITE_ID_CURRENT_SITE’, 1);
    define(‘BLOG_ID_CURRENT_SITE’, 1

    My .htaccess
    # BEGIN WordPress
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]

    # add a trailing slash to /wp-admin
    RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]

    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ – [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]
    # END WordPress

Viewing 5 replies - 1 through 5 (of 5 total)
  • nginx does not use .htacess files. You need to fix your configuration.

    Thread Starter mann1307

    (@mann1307)

    This hosting use branch – ngnix for static content, apache for dynamic content. My site work, but when you start to use them, infinity loop request crashed server, then frontpage became blank and other pages gives 404 error.

    > This hosting use branch – ngnix for static content, apache for dynamic content.

    That is not what I am seeing. I connected to wp-login.php (dynamic content) and nginx responded:

    curl -v sansaway.info/wp-login.php
    * Connected to sansaway.info (*ipaddress removed*) port 80 (#0)
    > GET /wp-login.php HTTP/1.1
    > Host: sansaway.info
    > Accept: */*
    >
    < HTTP/1.1 200 OK
    < Server: nginx
    < Date: Wed, 18 Mar 2015 15:58:07 GMT

    Thread Starter mann1307

    (@mann1307)

    I think problem in the other place. If it caused by .htacces file, it doesn’t work all time, but my site works on the hosting. Thanks for help, may be you have more ideas?

    Thread Starter mann1307

    (@mann1307)

    Now site is available. jkhongusc, you can check it.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘WordPress Multi Site crashed-Request exceeded the limit of 10 internal redirect’ is closed to new replies.