URL如何不经过index.php
在routes.php中使用Route::resource()后,怎么访问时候还需要加上index.php。如: http://localhost/public/index.php/photo,网上看资料直接
http://localhost/public/photo应该就可以,求解答,谢谢
http://localhost/public/photo应该就可以,求解答,谢谢
3 个回复
motecshine - 菜鸟
赞同来自: FiveSay 、00幽靈00 、lm
raisinli
赞同来自:
我的是Lnmp的环境。
azazd666
赞同来自:
location / {
index index.php;
if (!-e $request_filename) {
rewrite "^/(.*)$" /index.php last;
}
}
在location / 下加入if那段
希望能帮到你