사이트의 MAMP를 통해 로컬 환경을 설정 중이며 사이트에서 몇 가지 이전 기능을 보려면 몇 달 전에 웹을 사용 중지했으며 현재 apache_error에 다음 오류가 표시됩니다. 로그 파일.어떻게 요청을 해결할 수 있습니까? 내부 리디렉션 문제 (오히려 특정 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로 파일과 관련이있다 알고있다. 그러나, 나는 오히려 구체적 인 나의 파일 때문에 무엇이 잘못되었는지 알아낼 수 없었다. 여기가 (I는 개인의 이익을 위해 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]
하지만, 사람이 살펴보고 오류의 원인이 될 수있는 어떤 아이디어를 제공 할 수있는 경우 , 나는 영원히 고맙게 여길 것이다.