我想运行当前正在localhost中进行的codeigniter项目,我分别设置了每一个
$config['base_url'] = 'http://localhost/site';
$config['index_page'] = '';
它在我的办公室中工作正常,但是当我在休假期间将它买回家做更多工作时,我开始收到错误消息,它只显示主页或索引页面,而当我导航到其他页面时,它会显示404对象 仅显示主页,其他所有路线均不起作用 请帮助
答案 0 :(得分:0)
原因可以是
答案 1 :(得分:0)
创建.htaccess文件并放置以下代码:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>