我有Laravel 5.3的申请 在IIS中托管在这样的虚拟目录中(http://example.com/foo) 我有两条到基本网址的路线
value | number:2 = $modelValue
当我在表单中使用URL :: to('/')时,我总是得到http://example.com/foo我想获得http://example.com/foo/因为第一次抛出405 - 方法不允许错误。
对此有任何解决方案吗?
答案 0 :(得分:0)
使用
Route::any(“/“, [“as” => “jobs.index”, 'uses' => 'FrontController@index']);