14

エラー メッセージの取得:

[Sun Jun 02 12:43:33.579095 2013] [core:error] [pid 4964:tid 808] [client 127.0.0.1:56964] AH00124: Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a 

laravel を使用してルーティングを行う場合。私のルートは次のとおりです。

Route::get('/', 'HomeController@showWelcome');
Route::get('history', 'HistoryController@showHistory');

そして私の.htaccess:

<IfModule mod_rewrite.c>
    Options -MultiViews
    RewriteEngine On

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

そして私のエイリアス:

Alias /wunhopkuendo/ "c:/wamp/www/wunhopkuendo/public/" 

<Directory "c:/wamp/www/wunhopkuendo/public/">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
        Order allow,deny
    Allow from all
</Directory>
4

3 に答える 3

33

私もこの問題を抱えていました.htaccessファイルの次の行で解決しました:

RewriteBase /
于 2014-02-06T10:31:30.010 に答える