Created
May 18, 2016 21:31
-
-
Save jennimckinnon/46cebb67451ae71f480f30fc1e48c043 to your computer and use it in GitHub Desktop.
For Multisites using sub-domains.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| RewriteEngine On | |
| RewriteBase / | |
| RewriteRule ^index\.php$ - [L] | |
| # add a trailing 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] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment