How to route to a static folder in Laravel

前端 未结 3 1683
夕颜
夕颜 2020-12-25 12:24

I have a folder I\'ve placed in the /public folder in my Laravel site. The path is:

/public/test

the \"test\" folder has a file called inde

3条回答
  •  隐瞒了意图╮
    2020-12-25 12:58

    Use:

    return Redirect::to('/test/index');
    

    Either at the function at your routes file or inside a controller.

提交回复
热议问题