gpt4 book ai didi

php - 500 内部服务器错误 CodeIgniter htaccess mod_rewrite

转载 作者:行者123 更新时间:2023-12-04 18:35:31 25 4
gpt4 key购买 nike

我在 Windows 上编写了我的 Web 应用程序,并将其推送到运行 Ubuntu Linux 的服务器上。这是我的 .htaccess 文件:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /SearchDatGifUbuntu/
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.
ErrorDocument 404 /index.php
</IfModule>

我在/etc/apache2/sites-available/default 的文件如下:
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>

我在我的 ubuntu 服务器上的命令行中输入了 sudo a2enmod rewrite ,它说 mod_rewrite 已经打开。

当我通过我的 codeigniter 应用程序进行调试时,错误似乎出现在 CodeIgniter.php 的第 308 行,即:
$CI = new $class();

有人可以让我知道发生了什么吗?

最佳答案

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

试试这个 .htaccess 代码,然后重新启动你的 apache

如果这不起作用,请尝试此链接

How to enable mod_rewrite for Apache 2.2

关于php - 500 内部服务器错误 CodeIgniter htaccess mod_rewrite,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24504282/

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