404显示了代码点火器中的index.php删除时间



已经在工作的项目,我将下载并转到另一个服务器更改所有内容,但显示404和index.php添加到配置工作的

这是我下面的.htacess文件:

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

我尝试其他重写代码,但无法处理我的配置文件

$config['base_url'] = '';
$config['index_page'] = '';
$config['uri_protocol'] = 'REQUEST_URI';

但一直显示404为什么本地不工作

您的.htaccess文件应该是这样的:

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

以及在您的config.php

/* for server */
$config['base_url'] = 'http://silhouetteframes.in/';
/* for localhost*/
$config['base_url'] = 'http://localhost/app_folder/'; 
$config['index_page'] = ''; 

相关内容

  • 没有找到相关文章

最新更新