tags:

views:

464

answers:

2
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?

Thank you very much,

Eiso

A: 

There is a post here which gives rewrite rules: http://beatpanda.co.cc/blog/2010/05/16/wordpress-3-0-multisite-rewrite-rules-for-nginx/

However that one gives these errors when nginx starts:

root@xxx:/home/xxx/public_html/domain.com/public# /etc/init.d/nginx start Starting nginx: [emerg]: invalid number of arguments in "location" directive in /usr/local/nginx/sites-enabled/domain.com:33 nginx.

eiso
silly mistake, the arguments have to be on the same line.
eiso
A: 

Try this plugin and nginx config for it: http://wordpress.org/extend/plugins/nginx-compatibility/other_notes/

Olexandr Skrypnyk