Skip to content

Instantly share code, notes, and snippets.

@PauloBoaventura
Forked from jennimckinnon/.htaccess
Created May 25, 2022 20:18
Show Gist options
  • Save PauloBoaventura/a88a56d7119de6be8f02b80791a4ffa0 to your computer and use it in GitHub Desktop.
Save PauloBoaventura/a88a56d7119de6be8f02b80791a4ffa0 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]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment