Codeigniter除defauly以外,所有其他路径均不起作用

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

我正在尝试通过较小的更改来编辑项目。我将代码从托管下载到本地主机。我所做的唯一代码更改是来自

$config['base_url'] = 'http://example.com';

$config['base_url'] = 'http://localhost/autosure';

有人可以帮忙吗?

codeigniter-3
1个回答
0
投票

index.php添加到URL

$config['base_url'] = 'http://localhost/autosure/index.php';

或添加.htaccess

RewriteEngine on
RewriteCond $1 !^(index\.php|assets|image|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L,QSA]
© www.soinside.com 2019 - 2024. All rights reserved.