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
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]