laravel5.1 分页点击时候,多了一个反斜杠!

localhost/web/public/celluloide /?cinema_id=1&page=2

点击后面都会跟一个反斜杠,不知道为什么。
已邀请:

wang7613

赞同来自:

自定义分页 URL

您还可以透过 setPath 方法自定义使用的 URL:

$users = User::paginate();

$users->setPath('custom/url');
上面的例子将建立 URL,类似以下内容: http://example.com/custom/url?page=2
我重新定义了一下url 不知道还有没有其他更好的方法

要回复问题请先登录注册