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
You need to make an exclusion in your .htaccess file. Just above the rule that sends everything to index.php, add this:
.htaccess
index.php
RewriteCond %{REQUEST_URI} !^/forums
Anything that begins with /forums will not be sent to Laravel.
/forums
(Of course, this is assuming you are using Apache.)