• i’ve no subdomains,
    checked .htaccess and config twice
    diabled all plugins and tested with twentytwelve template

    still pages are blank
    (thought getting 404 in an other template, but not sure)

    posts are running well, backend also
    only pages are away.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Memnosis

    (@memnosis)

    yes, is 404 in child themes.

    my config-php to be sure:

    define('WP_DEBUG', true);
    
    define('WP_ALLOW_MULTISITE', true);
    
    define('MULTISITE', true);
    define('SUBDOMAIN_INSTALL', false);
    define('DOMAIN_CURRENT_SITE', 'ecosocial.me');
    define('PATH_CURRENT_SITE', '/love/');
    define('SITE_ID_CURRENT_SITE', 1);
    define('BLOG_ID_CURRENT_SITE', 1);

    and my htaccess:

    RewriteEngine On
    RewriteBase /love/
    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]
    Thread Starter Memnosis

    (@memnosis)

    i contacted my host, but we couldnt find the problem.

    on other multisite installation at the same host is running, so it should be my problem and not the hosts one.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘only pages are not working in multisite’ is closed to new replies.