Skip to content

Instantly share code, notes, and snippets.

@michaelterryio
Created January 17, 2023 21:32
Show Gist options
  • Save michaelterryio/b8c7817031ba9d36bb1b6d596109e17d to your computer and use it in GitHub Desktop.
Save michaelterryio/b8c7817031ba9d36bb1b6d596109e17d to your computer and use it in GitHub Desktop.
Diff of Wordpress default vs multisite `.htaccess`
# BEGIN WordPress Multisite
# Using subfolder network type: https://wordpress.org/support/article/htaccess/#multisite
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
# END WordPress Multisite
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment