bbPress => Version 2.0.2 – subfolder installation fails… ;-(
-
Hi there,
my wordpress lays here: httpdocs/mysubfolder/…
My Problem is now, that after I logged In/out bbpress puts the subfolder too much to the URL in my browser:
correct would be: http://xxx.xx/blend/forums/forum/blend/
but the incorrect bbpress way: http://xxx.xx/blend/blend/forums/forum/blend/
The “blend/” is too much!!! help me, what’s wrong with the redirection after login/logout? My Htacces in the root looks like that:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www.)?heglandog.ch$
RewriteCond %{REQUEST_URI} !^/heglandog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /heglandog/$1
RewriteCond %{HTTP_HOST} ^(www.)?heglandog.ch$
RewriteRule ^(/)?$ heglandog/index.php [L]
and inside the subfolder:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blend/
RewriteRule ^index.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blend/index.php [L]
</IfModule>
Thanks a lot for help!
regards
- You must be logged in to reply to this topic.