Okay, stop for a few minutes. I will be right back. I have to take a quick break.
Based on what I am seeing, previously the site was set up to show as a root install, though it is in the subdirectory.
That .htaccess file should be located in your public_html directory. You should have a second .htaccess file in the subdirectory of your isntall which should look like this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Your wp-config.php file should have the following.
define(‘WP_DEBUG’, false);
define(‘WP_ALLOW_MULTISITE’, true);
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, false);
define(‘DOMAIN_CURRENT_SITE’, ‘marcusassoc.net’);
define(‘PATH_CURRENT_SITE’, ‘/’);
define(‘SITE_ID_CURRENT_SITE’, 1);
define(‘BLOG_ID_CURRENT_SITE’, 1);
Let me know, if when you make things look like that, if everything is okay.