Disable Laravel Routing for a specific folder/route

前端 未结 6 1224
陌清茗
陌清茗 2021-01-17 08:49

I\'m wondering how to disable the routing on laravel for a specific directory?

I am hoping to run my main website off of laravel (I\'m rewriting it into the framewor

6条回答
  •  花落未央
    2021-01-17 09:35

    With Laravel 4 none of these solutions were working for me. I eventually solved it by placing

    RewriteRule ^(directory-name) - [L]
    

    before

    RewriteRule ^(.*)/$ /$1 [L,R=301]
    

    in public/.htaccess

提交回复
热议问题