在laravel app基本URL上强制尾随斜杠

时间:2017-07-21 10:35:21

标签: php laravel iis

我有Laravel 5.3的申请 在IIS中托管在这样的虚拟目录中(http://example.com/foo) 我有两条到基本网址的路线

value | number:2 = $modelValue

当我在表单中使用URL :: to('/')时,我总是得到http://example.com/foo我想获得http://example.com/foo/因为第一次抛出405 - 方法不允许错误。

对此有任何解决方案吗?

1 个答案:

答案 0 :(得分:0)

使用

Route::any(“/“, [“as” => “jobs.index”, 'uses' => 'FrontController@index']);