Getting 404 error on multisite subdomain
-
I have a working wordpress site running the semplice theme here: https://cleverevans.com. I recently changed it to a multisite. I created two subdomains through my host’s cpanel: ux.cleverevans.com and art.cleverevans.com. On cPanel, I redirected those subdomains to cleverevans.com/ux/ and cleverevans.com/art/, respectively.
I followed the directions here to create a network.
at cleverevans.com/wp-admin/, I now see “my sites” at the top. There are links to navigate to the dashboards for each of my new sites. However, whenever I navigate to either https://ux.cleverevans.com/wp-admin/ or https://art.cleverevans.com/wp-admin/, I get the error “The requested URL /wp-admin/ was not found on this server.”
Here’s what I added to my wp-config.php file, verbatim:
/* Multisite */
define( ‘WP_ALLOW_MULTISITE’, true );define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, true);
define(‘DOMAIN_CURRENT_SITE’, ‘cleverevans.com’);
define(‘PATH_CURRENT_SITE’, ‘/’);
define(‘SITE_ID_CURRENT_SITE’, 1);
define(‘BLOG_ID_CURRENT_SITE’, 1);
define(‘WP_HOME’,’https://cleverevans.com’);
define(‘WP_SITEURL’,’https://cleverevans.com’);/* That’s all, stop editing! Happy blogging. */
And here’s what my .htaccess file looks like:
RewriteEngine On
RewriteBase /
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]What am I missing?
I have searched through the forums here for help, but I don’t want to risk screwing things up farther while trying things willy-nilly.Thanks for any and all assistance.
The page I need help with: [log in to see the link]
- The topic ‘Getting 404 error on multisite subdomain’ is closed to new replies.