Laravel 5.1中的漂亮Url问题

时间:2015-10-02 07:36:56

标签: .htaccess laravel url

我想从网址中删除index.php以访问控制器操作。因此,我在.htaccess文件夹的public/文件中添加了以下代码:

Options +FollowSymLinks
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

如果有人回复我并解决这个问题,我将不胜感激。

1 个答案:

答案 0 :(得分:0)

为什么不使用默认的Laravel .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]
</IfModule>