Laravel .htaccess不工作

时间:2014-03-10 06:34:30

标签: php apache .htaccess mod-rewrite laravel

Laravel的默认.htaccess文件在Php Cloud服务器上出错。

错误:

  

此处不允许使用MultiViews

当我从.htaccess中移除以下部分时,我的主页工作,但其他路线出现404错误。

<IfModule mod_negotiation.c>
     Options -MultiViews
</IfModule>

原始.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>

1 个答案:

答案 0 :(得分:0)

根据这些Google results herehere,我认为你需要追加/编辑:

RewriteBase /
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]

总的来说:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    # Redirect Trailing Slashes...
    RewriteRule ^(.*)/$ /$1 [L,R=301]

    # Handle Front Controller...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^.*$ - [NC,L]
    RewriteRule ^.*$ index.php [NC,L]
</IfModule>