How do I maintain static directories on multisite subdomains?
The standard WP RewriteRules ignore files and directories that “exist”. Example: # 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 This the rewrite rule set for a WP install in the “root” of a site. Notice these … Read more