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