Disable Laravel Routing for a specific folder/route

前端 未结 6 1226
陌清茗
陌清茗 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:27

    I had to add this line in public/.htaccess

    RewriteCond %{REQUEST_URI} !^/foldername
    

    before this line (that redirects trailing slashes)

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

提交回复
热议问题