我知道有很多关于这个错误的话题,但还没有找到解决方案......我在 linux 和 apache(2.0)上重新安装了新版本的 php(5.4.9),全部由我构建。
我安装了 wordpress,它运行良好,但是当我尝试登录或打开我的旧论坛(invision 电源板)时出现错误:错误 HTTP 500(内部服务器错误)。
这个论坛的目录是/forum 文件夹的权限是:0755 我的根目录下的.htaccess 是
DirectoryIndex index.php
RewriteEngine On
RewriteRule ^old/(.*)$ /$1 [R=301,L]
RewriteBase /
我的 httpd conf 目录是
<Directory />
#Options FollowSymLinks
#Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order allow,deny
Allow from all
</Directory>
Mod rewrite 与 wordpress 完美配合,唯一的问题是这个旧论坛(保存了许多数据),有什么解决方案可以解决这个问题吗?