http://127.0.0.1/tp/index.php/movies使用.htaccess将此网址更改为http://127.0.0.1/tp/movies

时间:2015-04-01 08:53:27

标签: php laravel libcmtd

我正在为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]

1 个答案:

答案 0 :(得分:0)

有很多解决方案可以删除index.php,例如Laravel 4 remove Index.php from URL

但我建议您将Laravel根文件夹中的server.php重命名为index.php,并将.htaccess文件从/public目录复制到Laravel根文件夹。