• amitkdey

    (@amitkdey)


    While making wordpress site into a multisite, I am getting below error in chrome browser
    The blog.XXXXX.com page isn’t working

    blogs.wiley.com redirected you too many times.
    Try:
    Reloading the page
    Clearing your cookies

    Below lines are appended in /wp-config.php
    /* Multisite */
    define( ‘WP_ALLOW_MULTISITE’, true );
    define(‘MULTISITE’, true);
    define(‘SUBDOMAIN_INSTALL’, false);
    define(‘DOMAIN_CURRENT_SITE’, ‘blog.XXXXX.com:88’);
    define(‘PATH_CURRENT_SITE’, ‘/’);
    define(‘SITE_ID_CURRENT_SITE’, 1);
    define(‘BLOG_ID_CURRENT_SITE’, 1);
    /* That’s all, stop editing! Happy blogging. */

    Without the above configuration, page is loading fine. Please suggest

Viewing 2 replies - 1 through 2 (of 2 total)
  • Clarion Technologies

    (@clarionwpdeveloper)

    Try to use below is a .htaccess form a similar multisite submain project that is working…

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    
    RewriteCond %{SERVER_PORT} !^443$
    RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R,L]
    
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    # uploaded files
    RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [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]
    </IfModule>
    
    # END WordPress

    Thread Starter amitkdey

    (@amitkdey)

    Thanks for the suggestion.
    I have updated .htaccess with above details and placed the file in wordpress directory but of no luck.
    I am using Apache 2.4.18, php-5.6.21, wordpress 4.5.2 running on Red Hat Enterprise Linux AS release 4 (Nahant Update 7)

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘WP multisite is not working’ is closed to new replies.