我有一个 WordPress 网站,在我网站的根目录下运行。以及运行在directory /forums/
$USER$
如果登录到 IPB,我正在使用代码表示欢迎,现在最近我的知识没有任何变化,可能是对 IPB 的更新,每个 WordPress 都会page/post
踢出一个404 error
. 但不是WordPress中的404,论坛下的404?
你可以在这里看到这个:
http://www.tfuhq.com/ - WordPress 主页 (WORKS)
http://www.tfuhq.com/autobots/ - WordPress 内部页面 (404)
http://www.tfuhq.com/forums/ - 论坛(作品)
这是 wordpress 安装的 htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
这是论坛的 htaccess:
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteBase /forums/
RewriteCond %{REQUEST_FILENAME} .*\.(jpeg|jpg|gif|png)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . /forums/public/404.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /forums/index.php [L]
</IfModule>