1

私はこのフォーラムで一日中検索し、私のような同じ問題を見つけました.すべての答えを試しましたが、うまくいきません.

私のlocahostでは、すべて問題ありませんが、後でライブWebサーバーにアップロードすることにしたとき、表示され始めます

サーバーで内部エラーまたは構成ミスが発生したため、リクエストを完了できませんでした。

サーバー管理者 webmaster@reportingsystem.cnnpa.com に連絡して、エラーが発生した時刻と、エラーの原因となった可能性のある操作を知らせてください。

このエラーの詳細については、サーバー エラー ログを参照してください。

さらに、ErrorDocument を使用して要求を処理しようとしたときに、500 Internal Server Error エラーが発生しました。

私のエラーログでは、これを見ました:

[Tue Jan 29 22:05:53 2013] [error] [client 112.198.77.50] File does not exist: /home/cnnpa/crs/404.shtml
[Tue Jan 29 22:05:53 2013] [error] [client 112.198.77.50] File does not exist: /home/cnnpa/crs/crimeindex

これは、同様の質問を読むことに基づいて、.htaccess および mod_rewrite と関係があると思います。.htaccess を削除するとうまくいくように見えますが、最初は (index.php を削除して) よりクリーンな URL を取得する目的で .htaccess を使用したため、このソリューションは必要ありません。

ここに私の現在の .htaccess があります

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /crs/

    #Removes access to the system folder by users.
    #Additionally this will allow you to create a System.php controller,
    #previously this would not have been possible.
    #'system' can be replaced if you have renamed your system folder.
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #When your application folder isn't in the system folder
    #This snippet prevents user access to the application folder
    #Submitted by: Fabdrol
    #Rename 'application' to your applications folder name.
    RewriteCond %{REQUEST_URI} ^application.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #Checks to see if the user is attempting to access a valid file,
    #such as an image or css document, if this isn't true it sends the
    #request to index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    # Submitted by: ElliotHaughin

    ErrorDocument 404 /index.php
</IfModule>

私のconfig.phpで

$config['base_url'] = 'http://reportingsystem.cnnpa.com/';
$config['index_page'] = '';
$config['uri_protocol'] = 'AUTO';
4

1 に答える 1

3
RewriteBase /crs/

私の最初の疑いは、htaccess ファイルのRewriteBase値です。

config.php を見ると、DocumentRoot からアプリケーションを提供しているようです。その場合、RewriteBase は次のように記述します。

RewriteBase /    
于 2013-01-29T14:48:54.860 に答える