Skip to content

Instantly share code, notes, and snippets.

@nielsvr
Created June 4, 2014 13:31
Show Gist options
  • Save nielsvr/bb44836dc7a387b142df to your computer and use it in GitHub Desktop.
Save nielsvr/bb44836dc7a387b142df to your computer and use it in GitHub Desktop.
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