当我使用重定向时,我遇到了KO3核心插入index.php到我网址的问题 支持::实例() - >重定向( '东西');或$ paginationStuffHere-> render()。
其中任何一项的结果都是http://www.something.com/ index.php /某事
当我使用重定向的完整URL代替Request :: instance() - > redirect('http://www.something.com/something')等亲属时,这不是问题。但是我没有用分页函数来实现这一点的方法...我发现了,所以我真的需要找到它添加这个index.php的位置
当我使用View :: factory('something / something') - > render();这是我唯一能找到与
有类似问题的人在bootstrap.php中将基本URL设置为“/”
我的.htaccess看起来像这样
RewriteEngine On
RewriteBase /
RewriteRule ^(application|modules|system) -[F,L]
RewriteCond %(REQUEST_FILENAME) !-f
RewriteCond %(REQUEST_FILENAME) !-d
RewriteRule .* index.php/$0 [PT,L]
提前感谢任何建议。
答案 0 :(得分:16)
在bootstrap.php中找到Kohana :: init()并在该数组中将index_file设置为FALSE