在我的新项目中,我正在使用 codeigniter 2.2.0 和 A3M 1.01 授权库,我已经在我的本地主机上检查它工作正常,但是当我将它上传到远程服务器上时,主页已加载但登录不工作它显示以下错误( www.redzoon.com)
内部服务器错误
服务器遇到内部错误或配置错误,无法完成您的请求。
请联系服务器管理员 cgiadmin@yourhostingaccount.com 并告知他们错误发生的时间,以及您可能所做的任何可能导致错误的事情。
服务器错误日志中可能提供有关此错误的更多信息。
此外,在尝试使用 ErrorDocument 处理请求时遇到 500 Internal Server Error 错误。”我联系了服务器管理员,他说应用程序有问题。所以我认为 .htaccess 文件中可能有问题。这是我的 .htaccess 文件代码
RewriteEngine on
RewriteBase /CodeIgniter2.2_A3M/
# Directs all EE web requests through the site index file
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php/$1 [L]
<IfModule !mod_rewrite.c>
ErrorDocument 404 /index.php
</IfModule>
请帮助我我在哪里做错了,我错过了什么