0

在我的新项目中,我正在使用 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>

请帮助我我在哪里做错了,我错过了什么

4

1 回答 1

0

我已经用谷歌搜索了大约三天,最后我通过更改.htaccess 得到了一些线索。现在我没有收到 500 内部服务器错误,而是收到“没有指定输入文件”,然后我再次搜索了这个错误,我发现了一个链接 .htaccess 问题:没有指定输入文件 ,我在哪里得到了我的问题的解决方案,这是 .htaccess 问题。 htaccess 代码

DirectoryIndex index.php

RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|robots\.txt)

RewriteRule ^(.*)$ index.php?/$1 [L]

这对我有用。

于 2015-03-08T10:37:10.400 回答