Urgent issue which needs solving here. I've made the switch from subdomains to subdirectories for a website -- the Network Admin page could no longer be accessed afterwards, page displays an "Internal Server Error" message instead. Have tried reversing the changes, but the "Internal Server Error" message still persists, and network admin page can no longer be accessed.
wpconfig.php file (the relevant parts) as follows:
define( 'WP_ALLOW_MULTISITE', true );
define('MULTISITE', true);
define('SUBDOMAIN_INSTALL', true);
define('DOMAIN_CURRENT_SITE', 'arccoffices.com' );
define('PATH_CURRENT_SITE', '/' );
define('SITE_ID_CURRENT_SITE', 1);
define('BLOG_ID_CURRENT_SITE', 1);
/* That's all, stop editing! Happy blogging. */
/** Absolute path to the WordPress directory. */
if ( !defined('ABSPATH' ) )
define('ABSPATH', dirname(__FILE__) . '/' );
/* Custom Settings */
define( 'WP_CONTENT_DIR', dirname( __FILE__ ) . '/wp-content' );
define( 'WP_CONTENT_URL', '/wp-content' );
/** Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php' );
define( 'WP_MEMORY_LIMIT', '256M' );
And htaccess file as follows:
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
# add a trailng 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]
Please help me restore access to my network admin page, as I need this page to install plugins. Also, how do I properly enable subditectories for my page? Thank you so much for the assistance!