2016-04-22 17 views
2

私はcodeigniterフレームワークでwebportalを開発しましたが、共有ホスティングサーバーでホストしようとするとこのエラーが発生します。Codeigniter:リダイレクトが多すぎるWebサイト

wwww.abc.comがあなたを何度もリダイレクトしました。 ERR_TOO_MANY_REDIRECTS

私は問題がここ

だったかわからないが、私の.htaccessファイル私はサポートチームをホスティングと接触している

RewriteEngine on 
# Removes index.php from ExpressionEngine URLs 
     RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC] 
     RewriteCond %{REQUEST_URI} !/system/.* [NC] 
     RewriteCond %{REQUEST_URI} ^application.*[NC] 
     RewriteRule (.*?)index\.php/*(.*) $1$2 [R=301,NE,L] 

# Directs all EE web requests through the site index file 
     RewriteCond %{REQUEST_FILENAME} !-f 
     RewriteCond %{REQUEST_FILENAME} !-d 
     RewriteRule ^(.*)$ index.php?/$1 [L] 

UPDATE て、彼らはそれがあったことを言いましたモードセキュリティエラーです。ここでそれについてのログ。

ModSecurityは:アクセスが状態302(段階4)を使用して http://spotmyticket.com/へのリダイレクトと拒否。パターン一致 "^ 5 \\ d {2} $"はRESPONSE_STATUSです。 [ファイル " " /usr/local/apache/conf/modsec_vendor_configs/OWASP/rules/RESPONSE-50-DATA-LEAKAGES.conf "] [行" 14 "] [id" 970901 "] [rev" 3 "] [ msg "アプリケーションが返されました 500レベルのステータスコード"] [データ "一致したデータ:500が見つかりました RESPONSE_STATUS:500"] [重大度 "ERROR"] [ver "OWASP_CRS/3.0.0"] [maturity "9 "] [精度" 9 "] [タグ" Host:spotmyticket.com "] [タグ " application-multi "] [タグ" language-multi "] [タグ" platform-multi "] [タグ" attack-informationタグ "WASCTC/WASC-13"] [タグ "WASCTC/WASC-13"] [ "OWASP_TOP_10/A6"] [タグ "PCI/6.5.6"] [ホスト名 "spotmyticket.com"] [uri "/index.php"] [unique_id "VxpEf2f3YKwABUKkyP4AAABb"]

答えて

0
DirectoryIndex index.php 
RewriteEngine on      
RewriteCond $1 !^(index\.php|(.*)\.swf|forums|images|css|downloads|js|robots\.txt|favicon\.ico) 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^(.*)$ ./index.php?$1 [L,QSA] 
+0

それは するRewriteCondの%{REQUEST_FILENAME}!-f するRewriteCond%{REQUEST_FILENAME}上 <のIfModule mod_rewrite.c> RewriteEngineはindex.php –

+0

のErrorDocument 404 /index.php のDirectoryIndexが働いていませんでした! -d RewriteRule ^(。*)$ index.php?/ $ 1 [L、QSA] – Gor

+0

回答が得られません –