我正在为mtdb使用laravel框架我想将此{ur}更改为http://127.0.0.1/tp/index.php/movies http://127.0.0.1/tp/movies表示我想添加以使用.htaccess
删除index.php以下是.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]
答案 0 :(得分:0)
有很多解决方案可以删除index.php
,例如Laravel 4 remove Index.php from URL
但我建议您将Laravel根文件夹中的server.php
重命名为index.php
,并将.htaccess
文件从/public
目录复制到Laravel根文件夹。