サイトの古い機能を表示するために2,3ヶ月前にウェブをオフにしたサイトのMAMP経由でローカル環境を設定しています。現在、apache_errorに次のエラーが表示されています。ログファイル。リクエストを解決するにはどうすれば10個の内部リダイレクトの問題(特定のhtaccessファイル)の制限を超えましたか?
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 backtrace., referer: http://localhost:8888/
私は他の記事(例えば Request exceeded the limit of 10 internal redirects due to probable configuration error)での解決策を探している、と私はそれが私の.htaccessファイルに関係しています知っています。しかし、私のファイルが特定のものであるために何が間違っているのか理解できませんでした。ここでは、(私はプライバシーのためにexample.comに私のウェブサイトの名前を変更)です:
Options FollowSymlinks
RewriteEngine On
RewriteRule ^demo/ - [L]
RewriteRule ^\.htaccess$ - [F]
RewriteCond %{HTTP_HOST} ^example.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]
RewriteCond %{REQUEST_URI} =""
RewriteRule ^.*$ example/public/index.php [NC,L]
RewriteCond %{REQUEST_URI} !^/public/.*$
RewriteRule ^(.*)$ example/public/$1
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^.*$ - [NC,L]
RewriteRule ^public/.*$ example/public/index.php [NC,L]
これは、ロングショットかもしれないが、誰が見てみると、エラーを引き起こしている可能性がありますかのアイデアを提供することができる場合私は永遠に感謝しています。