The WP network/multisite installation instructions have all the old WP .htaccess rules being replaced by the following:
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
However, in order to begin the installation, all plugins must be deactivated. Could someone please advise as to the best way to accomplish this task. Also, all the original WP rules to which the network installation is referring have been completely changed by BPS. I also need to know what exactly I should replace in the rewritten BSP .htaccess file with the new rules (above). I appreciate any assistance you may be able to provide. If it helps any, I will be upgrading to BPS Pro once this site begins generating revenue – you have a great product.