避免重定向到Laravel 4上的/index.php

时间:2013-12-04 08:17:14

标签: .htaccess laravel-4

我正在运行一个Laravel 4项目,当我点击浏览器www.mydomain.com时一切顺利,但当我点击mydomain.com时,我被重定向到www.mydomain.com/index.php。

有人可以帮我避免重定向到index.php吗?

这是我公开的.htaccess:

<IfModule mod_rewrite.c>
    Options -MultiViews
    RewriteEngine On

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

我的应用程序托管在fortrabbit.com上,我的域名停放在我的共享主机上,我在那里进行了dns设置。如有必要,我会向您提供其他详细信息。谢谢!

0 个答案:

没有答案