.htaccess - Codeigniter 站点无法在实时服务器中运行

标签 .htaccess codeigniter http

谁能帮帮我,

我的网站在登台服务器上运行良好,我移动了网站实时服务器,但出现 HTTP 错误 500。

我的 htaccess 文件是

<IfModule mod_rewrite.c>
    RewriteEngine On
    #RewriteBase /

    #Removes access to the system folder by users.
    #Additionally this will allow you to create a System.php controller,
    #previously this would not have been possible.
    #'system' can be replaced if you have renamed your system folder.
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #When your application folder isn't in the system folder
    #This snippet prevents user access to the application folder
    #Submitted by: Fabdrol
    #Rename 'application' to your applications folder name.
    RewriteCond %{REQUEST_URI} ^application.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #Checks to see if the user is attempting to access a valid file,
    #such as an image or css document, if this isn't true it sends the
    #request to index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    # Submitted by: ElliotHaughin

    ErrorDocument 404 /index.php
</IfModule>

两个服务器中都有相同的 htaccess 文件。 mod_rewrite 已启用,服务器端一切正常。谁能帮我解决问题

最佳答案

不完全是一个答案,但对于评论来说太大了:

switch (ENVIRONMENT) {
    case 'development':
        error_reporting(~E_DEPRECATED);
        ini_set('display_errors', 1);
        break;
    case 'testing':
    case 'production':
        error_reporting(~E_DEPRECATED);
        ini_set('display_errors', 1);
        break;
    default:
        header('HTTP/1.1 503 Service Unavailable.', TRUE, 503);
        echo 'The application environment is not set correctly.';
        exit(1); // EXIT_ERROR
}

production 更改为与 development 具有相同的 error_reporting,这样您将收到错误,而不是看到一个通用的 500 页面。

我不相信你的 .htaccess 文件在这里有问题,因为你会得到 400 而不是 500(内部服务器错误)。

关于.htaccess - Codeigniter 站点无法在实时服务器中运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49018011/

相关文章:

.htaccess - 将所有流量从一个域重定向到另一个域

.htaccess - 使用 mod_rewrite 创建 SEO 友好的 URLS

php - Codeigniter - 在环境之间切换

javascript - 在 ajax 中使用 AntiForgeryToken - mvc5

rest - 使用正确的 ACL 通过 VPC 端点通过 HTTP 将对象放入 AWS S3?

apache - 如何在 .htaccess 503 重定向中保持网站 url 相同

php - 我应该将哪个 session 库与 CodeIgniter 一起使用?

codeigniter - CodeIgniter 中不区分大小写的路由

Angular HttpParams 对象为空

javascript - 子域 CSS 和 JS 文件问题