我正在尝试通过较小的更改来编辑项目。我将代码从托管下载到本地主机。我所做的唯一代码更改是来自
$config['base_url'] = 'http://example.com';
到
$config['base_url'] = 'http://localhost/autosure';
有人可以帮忙吗?
将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]