문제

I have wp mu(3.6) and bbpress 2.4 installed as plugin.

The following url http://www.mydomain.local/forums/users/51cdf2a4630ff/ make redirect to site home and not show user profile page.

I've tried to deactivate all plugins (except bbpress) but the issue isn't fixed.

This is the .htaccess (but any other page works perfectly):

RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^(.*\.php)$ $1 [L]
RewriteRule . index.php [L]

Does someone have any ideas?

도움이 되었습니까?

해결책

found a working solution on this post http://zzlatev.com/bbpress-404-header-in-users-profiles/

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top