Skip to content

Instantly share code, notes, and snippets.

@jbutko
Created September 14, 2013 13:38
Show Gist options
  • Save jbutko/6562115 to your computer and use it in GitHub Desktop.
Save jbutko/6562115 to your computer and use it in GitHub Desktop.
WP, server: Default Multisite httaccess file
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule . index.php [L]
# END WordPress
//From http://premium.wpmudev.org/forums/topic/internal-server-error-3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment