URL如何不经过index.php

在routes.php中使用Route::resource()后,怎么访问时候还需要加上index.php。如: http://localhost/public/index.php/photo,网上看资料直接
http://localhost/public/photo
应该就可以,求解答,谢谢
已邀请:

motecshine - 菜鸟

赞同来自: FiveSay 00幽靈00 lm

rewrite , apache 需要开启rewirte模块,nginx 要改conf。具体百度下

raisinli

赞同来自:

我尝试了很多取消index.php的配置,都没有任何效果。

我的是Lnmp的环境。

azazd666

赞同来自:

我现在是nginx
location / {
index index.php;
if (!-e $request_filename) {
rewrite "^/(.*)$" /index.php last;
}

}

在location / 下加入if那段

希望能帮到你

要回复问题请先登录注册