私は解決策を見てきましたが、私が見つけたものは何も無限ループ問題を止めました。htaccess index.phpを通してすべてをリダイレクトしたときの無限ループ
私はそう私にしてください許しhtaccessのに非常に新しいです..
私は現在、私が構築していますCMSのためWAMPサーバを実行していると私は、このようなローカルホスト/ CMS /ページ名を介するなど、すべてのページ要求をリダイレクトしますindex.phpファイルのURLを変更しないでください。それは再びリダイレクトし、私はその理由は分からないリダイレクト時に何らかの理由で
#disable directory showing
Options -Indexes
#error documents
ErrorDocument 404 cms/html/notfound.html
ErrorDocument 403 cms/html/notfound.html
#index
DirectoryIndex cms/html/index.php
RewriteEngine On
Options +FollowSymlinks
RewriteBase/
RewriteRule ^admin/?$ cms/html/login.php
RewriteRule ^login.php?$ cms/php/login.php
RewriteRule ^reset_password?$ cms/html/reset_password.php
RewriteRule ^reset.php/?$ cms/php/reset.php
RewriteRule ^reset_action.php/?$ cms/php/reset_action.php
# Internally redirect all pages to index.php
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . cms/index.php/$1?%{QUERY_STRING} [L]
..