Multisite subsites not working properly
-
I am trying to work on a WordPress Subdirectory Multisite network. The problem is happening that all subsites are giving 100s of 404 errors. Basically all the files and images are showing as 404. Needless to say that without any CSS, JS and images, the subsites are not displaying anything properly.
When I try to access the
wp-admin
of any subsite, it gives too many redirects error. I tried to search for a solution but I could not make anything work.The main site and it’s
wp-admin
works fine without any errors.Here are the .htaccess code, I would really appreciate it if someone can help me.
RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>
And the
wp-config.php
file has these linesdefine( 'WP_ALLOW_MULTISITE', true ); define('MULTISITE', true); define('SUBDOMAIN_INSTALL', false); define('DOMAIN_CURRENT_SITE', 'domain.tld'); define('PATH_CURRENT_SITE', '/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1);
The common permalink settings on the main site are set to
/%postname%.php
- The topic ‘Multisite subsites not working properly’ is closed to new replies.