Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: WPMU + 404 error

my rewrite rules for the document root where wordpressmu is installed are (note, my bbpress is installed in the /discuss directory):

RewriteEngine On

RewriteBase /

#uploaded files

RewriteRule ^(.*/)?files/$ index.php [L]

RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]

RewriteCond %{REQUEST_FILENAME} -f [OR]

RewriteCond %{REQUEST_FILENAME} -d [OR]

RewriteCond %{REQUEST_URI} ^/discuss(.*)$

RewriteRule . – [L]

RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]

RewriteRule ^([_0-9a-zA-Z-]+/)?(.*.php)$ $2 [L]

RewriteRule . index.php [L]

then, in my bbpress directory, i put in my .htaccess:

Options +MultiViews

if the +MultiViews thing doesn’t work for you, there’s something else you can put in there (only needed if you want to use the pretty-permalinks). Described here:

https://bbpress.org/documentation/faq/#pretty-permalinks

Skip to toolbar