I am using laravel framework for mtdb i wanna change http://127.0.0.1/tp/index.php/movies this url to http://127.0.0.1/tp/movies means i want to add to remove index.php using .htaccess
Here is the .htaccess
I have
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]