Multisite – Can't view new sites, but able to create them
-
I set up wordpress, everythings all hunky-dory. I tried to set up Multisite, everything went according to plan.
THEN I tried to create a new site, that also worked, I can edit the general info from the Network admin, and I can edit and run the original site like normal, but when I try to go the new site, or it’s dashboard I receive a 404 Not Found page.My .htaccess is exactly what the “Network Setup” under the Network Admin’s Dashboard, same with the list of defines in the wp-config.php file. I have placed them below:
wp-config.php:
define('MULTISITE', true); define('SUBDOMAIN_INSTALL', true); define('DOMAIN_CURRENT_SITE', '[SERVER_IP]'); define('PATH_CURRENT_SITE', '/wordpress/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1);
.htaccess:
RewriteEngine On RewriteBase /wordpress/ RewriteRule ^index\.php$ - [L] # add a trailing slash to /wp-admin RewriteRule ^wp-admin$ wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^(wp-(content|admin|includes).*) $1 [L] RewriteRule ^(.*\.php)$ $1 [L] RewriteRule . index.php [L]
Any help would be greatly appreciated
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Multisite – Can't view new sites, but able to create them’ is closed to new replies.