1

我正在学习 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页面(如果还没有的话)。

还有其他更好的方法吗?

谢谢

4

1 回答 1

0

在 /app/config/app.php 中将 'url' 值更改为您的域 + index.php

于 2013-06-08T13:17:50.020 回答