Skip to content

Instantly share code, notes, and snippets.

@jennimckinnon
Last active August 29, 2015 14:09
Show Gist options
  • Save jennimckinnon/83eeab5f21efb435d66f to your computer and use it in GitHub Desktop.
Save jennimckinnon/83eeab5f21efb435d66f to your computer and use it in GitHub Desktop.
The code for multisite installations for WordPress 3.5 and above, in the .htaccess file.
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)$ wp/$1 [L]
RewriteRule . index.php [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment