Skip to content

Instantly share code, notes, and snippets.

@jennimckinnon
Created May 7, 2017 15:24
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jennimckinnon/a42d99764a8c34d0efe8cdddf87a2817 to your computer and use it in GitHub Desktop.
Save jennimckinnon/a42d99764a8c34d0efe8cdddf87a2817 to your computer and use it in GitHub Desktop.
Default .htaccess file for subdomain installations of WordPress Multisite for versions 3.5+.
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]
@jennimckinnon
Copy link
Author

this is working ?

Yes, this is still current and works as of WordPress version 5.4.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment