重定向循环在子目录/子文件夹中安装laravel 4

时间:2013-11-01 03:19:23

标签: php .htaccess laravel-4

您好我已经在我的主域名的子文件夹中安装了laravel 4.

domain.com/laravel4/

在laravel 4里面,我创建了一个.htaccess,指向laravel的公共文件夹。

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule ^(.*)$ public/$1 [L]
</IfModule>
公共文件夹中的

.htaccess

<IfModule mod_rewrite.c>
    Options -MultiViews
    RewriteEngine On

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

问题是我有一个重定向循环。

1 个答案:

答案 0 :(得分:0)

你可以尝试:

公共文件夹中的

htaccess

<IfModule mod_rewrite.c>
    Options -MultiViews
    RewriteEngine On    
    RewriteBase /public/

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