Hello, first post here. Just signed up yesterday and loving the site so far.
To use a non-MU plugin I installed on my new MU site (put in the /plugins/ folder), I need to access certain files like /wp-content/plugins/plugin/folder/setup_db_tables.php in both my root blog “domain.net” and MU blogs “test.domain.net” but when trying to access them, I get an Error 404 that I am pretty sure relates to the RewriteCond line in my htaccess file:
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]
So can anyone help me find the best way to access my plugin files without moving them into a different folder? Any easy change to my htaccess to make that happen? If not, will deleting that block of code do anything other than make file uploads not work?
Thanks for your help :slight_smile: