0

私はコハナフレームワークで書かれたウェブサイト全体を持っています、それは私によって書かれていません、私は久しぶりにそれを立ち上げるのを手伝っています、それは私が正しければ2009年に書かれました。

そこで、すべてのファイルをアップロードし、Mysqlデータを挿入して構成を行い、次のWebサイトにアクセスします。

adress.comとそれはadress.com/index.php/ltにリダイレクトします

しかし、それから私は白いページだけを見て、タイトルも何も見えません。コハナのログは次のことを示しています。

    2012-08-26 22:56:48 +03:00 --- debug: Auth Library loaded
2012-08-26 22:56:48 +03:00 --- debug: MySQL Database Driver Initialized
2012-08-26 22:56:48 +03:00 --- debug: Database Library initialized
2012-08-26 22:56:49 +03:00 --- debug: Global GET, POST and COOKIE data sanitized
2012-08-26 22:56:49 +03:00 --- debug: Session Cookie Driver Initialized
2012-08-26 22:56:49 +03:00 --- debug: Session Library initialized
2012-08-26 22:56:49 +03:00 --- debug: Auth Library loaded
2012-08-26 22:56:49 +03:00 --- debug: MySQL Database Driver Initialized
2012-08-26 22:56:49 +03:00 --- debug: Database Library initialize

次に、サーバーログに次のように表示されます。

[Sat Aug 25 12:51:47 2012] [error] [client 94.244.82.207] mod_rewrite: maximum number of internal redirects reached. Assuming configuration error. Use 'RewriteOptions MaxRedirects' to increase the limit if neccessary.
[Sat Aug 25 12:51:48 2012] [error] [client 94.244.82.207] mod_rewrite: maximum number of internal redirects reached. Assuming configuration error. Use 'RewriteOptions MaxRedirects' to increase the limit if neccessary.

.htaccessファイルは次のとおりです。

# Turn on URL rewriting
RewriteEngine On

# Installation directory
RewriteBase /sporttv/

# Protect application and system files from being viewed
RewriteRule ^(application|modules|system) - [F,L]

# Protect .git files
RewriteRule ^.git - [F,L]

# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT,L]
4

1 に答える 1

0

ファイルにエラーがあり.htaccessます。実例は次のとおりです。

# Turn on URL rewriting
RewriteEngine On

# Installation directory
RewriteBase /sporttv/

# Protect hidden files from being viewed
<Files .*>
    Order Deny,Allow
    Deny From All
</Files>

# Protect application and system files from being viewed
RewriteRule ^(?:application|modules|system)\b.* index.php/$0 [L]

# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT]
于 2012-09-06T19:53:54.217 に答える