Rewrite rules for wordpress 3.0 (multi-site) for nginx?
Posted
by Zebra10
on Stack Overflow
See other posts from Stack Overflow
or by Zebra10
Published on 2010-02-17T04:20:31Z
Indexed on
2010/06/16
19:22 UTC
Read the original article
Hit count: 226
This is the new version being used by wordpress...
RewriteEngine On
RewriteBase BASE/
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-includes/ms-files.php?file=$2 [L]
# add a trailing slash to /wp-admin
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
RewriteRule ^(.+)$ $1/ [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]
What would it look like in Nginx?
© Stack Overflow or respective owner