我正在为 mtdb 使用 laravel 框架我想将http://127.0.0.1/tp/index.php/movies这个 url 更改为 http://127.0.0.1/tp/movies 意味着我想添加以删除 index.php 使用.htaccess
这里是.htaccess
我有
<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]