I want to configure the .htaccess so I can omit the inde.php on URIs, so users will be able access
http://localhost/laravel/something/
instead of
http://localhost/laravel/index.php/something/
Is it possible?
Note: I'm using Apache/2.4.9
If it's an Apache server then you would do it with an .htaccess file.
I figured, but the default .htaccess file that comes with laravel does not do that.
How do I make one that does?
I had a similar problem, I solved it by adding the line
RewriteBase /
after "RewriteEngine On".
Maybe that's what you need, too?
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community