【发布时间】:2023-03-15 01:25:01
【问题描述】:
我刚刚将我的应用程序上传到另一台服务器(在以前的服务器上运行良好),但现在我收到此错误:
Not Found
The requested URL /lk/installation was not found on this server.
我怀疑.htaccess 存在一些问题,其内容如下:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
控制器installation 被声明为:Installation.php,但我再说一遍,该应用程序在以前的服务器上运行良好,因此不存在诸如类名声明之类的技术问题。一定是服务器配置的问题,注意我找不到服务器页面不是CodeIgniter页面。
【问题讨论】:
标签: php apache .htaccess codeigniter