0

我转移了我制作的用于将代码转移到 Codeigniter Bootstrap https://github.com/sjlu/CodeIgniter-Bootstrap的 codeigniter 应用程序的副本;

我将 baseurl 更改为“localhost/{dir name}”,更改了链接,默认控制器。第一个页面加载正常,但所有链接都重定向回本地主机,我确信我错过了一些愚蠢的东西,但我不知道它是什么?源,如果我输入 localhost/{controller}/{function} 并带有回声来测试它,它不会加载函数

4

1 回答 1

0

你忘了写.htaccess..

#php_value upload_max_filesize 200M
#php_value post_max_size 200M
RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond $1 !^(index\.php|indexcp\.php?|resources|robots\.txt)
RewriteRule ^([A-Za-z0-9_/.-]+)$ index.php?/welcome/$1 

RewriteRule ^(CSI) index.php?/CSI
AddType text/x-component .htc

我已经在你的仓库中添加了

于 2012-12-26T06:45:03.683 回答