我正在学习 Laravel 4,我不能在我的托管空间中使用 .htaccess,所以我需要index.php
不断地在我的 url 中使用,否则我最终会得到 404。
有没有办法让 laravel 4 知道我需要index.php
在我的 url 中(在 laravel 3 中,配置文件 application.php 中有一个键,我想,现在似乎已经消失了)
例子:
* if I'm in the url localhost :
URL::to('logout') => localhost/logout (404)
* but in the url localhost/index.php :
URL::to('logout') => localhost/index.php/logout (ok)
现在,作为一个快速技巧,我使用before 过滤器来重定向/index.php
页面(如果还没有的话)。
还有其他更好的方法吗?
谢谢