0

我安装了 wp mu(3.6) 和 bbpress 2.4 作为插件。

以下 url http://www.mydomain.local/forums/users/51cdf2a4630ff/重定向到站点主页并且不显示用户个人资料页面。

我已尝试停用所有插件(bbpress 除外),但问题并未解决。

这是 .htaccess (但任何其他页面都可以正常工作):

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]

有人有什么想法吗?

4

1 回答 1

0

在这篇文章http://zzlatev.com/bbpress-404-header-in-users-profiles/上找到了一个可行的解决方案

于 2013-09-25T17:11:59.887 回答