2013-11-01 77 views
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> 

的問題是我有一個重定向循環中。

回答

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> 
相關問題