gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:23:31 26 4
gpt4 key购买 nike

谁能帮帮我,

我的网站在登台服务器上运行良好,我移动了网站实时服务器,但出现 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com