服务器错误如何解决!在 xampp 中运行应用程序时出现错误 500

问题描述 投票:0回答:2

我正在使用 codeigniter 框架开发一个网站。我将所有包粘贴到 phpdesktop 中,因为我们试图将其转换为运行良好的桌面应用程序。但是当我将文件夹移动到 xamp 中的 htdocs 时,它无法运行,并给出以下错误:

服务器错误!

服务器遇到内部错误,无法完成 你的申请。服务器超载或出现错误 CGI 脚本。

如果您认为这是服务器错误,请联系网站管理员。 错误 500 本地主机 Apache/2.4.39 (Win64) OpenSSL/1.1.1b PHP/7.3.5

当我检查 apache 错误日志时,我显示了以下内容:

[2019 年 5 月 10 日星期五 18:36:37.353885] [核心:警报] [pid 14880:tid 1912]
[客户端::1:58528] C:/xampp/htdocs/law/.htaccess:命令无效 '//',可能拼写错误或由未包含在中的模块定义 服务器配置

htaccess

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ sys_info/$1 [L] 

如何解决。另外它在 phpdesktop 中运行得很好。

codeigniter xampp
2个回答
0
投票

您已经在

index_page
上配置了
config.php
吗?我只是将其留空,这是对我有用的 .htaccess 示例:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]

</IfModule>

希望这有帮助!


0
投票

原帖:https://community.magento.com/t5/Installing-Magento-2-x/Server-error-500-Error/td-p/312568

找到名为httpd.conf的文件,它应该位于 XAMPP安装目录pach

© www.soinside.com 2019 - 2024. All rights reserved.