0
嗨,我已經在我的主域中的子文件夾中安裝了laravel 4。重定向循環在子目錄/子文件夾中安裝laravel 4
domain.com/laravel4/
Inside laravel 4 ive創建了一個指向laravel公用文件夾的.htaccess。
<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>
的問題是我有一個重定向循環中。