Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Can't enable user themes


_ck_
Participant

@_ck_

I believe wordpress is trying to process the request because you have bbPress nested underneath WordPress which is a less common method of integration.

Try changing that .htaccess to this

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !^forums/
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

Not quite sure I have that right but give it a go and let’s see.

If it doesn’t work try replacing the forums/ line with this one:

RewriteCond %{REQUEST_URI} !^forums/

Skip to toolbar