I work for an orginazation that does not allow htaccess at all. I have to configure all request through the httpd.conf.
I have folder based uri's working wing but anything with a dot I get a 404
Here is the code I have in the httpd.conf
RewriteCond %{HTTP:Authorization} . RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^/(.*)/$ /$1 [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^ /index.php [L]
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community