I've added the following to my public/.htaccess file in my laravel project.
#### Force lower case URL ####
RewriteCond %{REQUEST_URI} ^[^A-Z]*[A-Z].*
RewriteRule ^ ${lc:%{REQUEST_URI}} [L,R=301]
It works as far as converting all upper-case characters to lower, however it reroutes the url to the public folder.
ie. /jobs gets rerouted to /public/jobs
Is there away to avoid this?