0

Web サイトを展開しようとしていますが、500 内部サーバー エラーが発生し続けます。ホームページは問題なく開くことができますが、別のメニュー タブを開こうとすると、500 Internal Server Error が表示され続けます。ログも確認しましたが、手がかりが見つからないようです。これが私のサーバーエラーログが示したものです:

<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>

DEBUG - 2013-03-20 11:36:44 --> Config Class Initialized 
DEBUG - 2013-03-20 11:36:44 --> Hooks Class Initialized 
DEBUG - 2013-03-20 11:36:44 --> Utf8 Class Initialized 
DEBUG - 2013-03-20 11:36:44 --> UTF-8 Support Enabled 
DEBUG - 2013-03-20 11:36:44 --> URI Class Initialized 
DEBUG - 2013-03-20 11:36:44 --> Router Class Initialized 
DEBUG - 2013-03-20 11:36:44 --> No URI present. Default controller set. 
DEBUG - 2013-03-20 11:36:44 --> Output Class Initialized 
DEBUG - 2013-03-20 11:36:44 --> Security Class Initialized 
DEBUG - 2013-03-20 11:36:44 --> Input Class Initialized 
DEBUG - 2013-03-20 11:36:44 --> Global POST and COOKIE data sanitized 
DEBUG - 2013-03-20 11:36:44 --> Language Class Initialized 
DEBUG - 2013-03-20 11:36:44 --> Loader Class Initialized 
DEBUG - 2013-03-20 11:36:44 --> Config file loaded: application/config/asset.php 
DEBUG - 2013-03-20 11:36:44 --> Helper loaded: asset_helper 
DEBUG - 2013-03-20 11:36:44 --> Helper loaded: string_helper 
DEBUG - 2013-03-20 11:36:44 --> Helper loaded: url_helper 
DEBUG - 2013-03-20 11:36:44 --> Helper loaded: form_helper 
DEBUG - 2013-03-20 11:36:44 --> Helper loaded: text_helper 
DEBUG - 2013-03-20 11:36:44 --> Database Driver Class Initialized 
DEBUG - 2013-03-20 11:36:44 --> Native_session Class Initialized 
DEBUG - 2013-03-20 11:36:44 --> Form Validation Class Initialized 
DEBUG - 2013-03-20 11:36:44 --> Controller Class Initialized 
DEBUG - 2013-03-20 11:36:44 --> Model Class Initialized 
DEBUG - 2013-03-20 11:36:44 --> Model Class Initialized 
DEBUG - 2013-03-20 11:36:44 --> File loaded: application/views/view_home.php 
DEBUG - 2013-03-20 11:36:44 --> File loaded: application/views/template.php 
DEBUG - 2013-03-20 11:36:44 --> Final output sent to browser 
DEBUG - 2013-03-20 11:36:44 --> Total execution time: 0.0295

これが私の .httaccess です

RewriteBase /indocreweb/ の RewriteEngine

#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 ^(.*)$ /indocreweb/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 ^(.*)$ /indocreweb/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 ^(.*)$ /indocreweb/index.php?/$1 [L] </IfModule>

# mod_rewrite がインストールされていない場合、すべての 404 は # index.php に送信され、すべて正常に機能します。#提出者: ElliotHaughin ErrorDocument 404 /index.php

ログが示したものから、何が問題なのか、何が原因なのか、手がかりを見つけることができませんでした。誰でもこれについて考えがありますか?:-(

ありがとうございました。

4

1 に答える 1

0

エラーから、.htaccessが原因でほとんどが発生しているように見えます。通常、すべてのサーバーにはmod_rewriteがあるため、モジュールが存在することは問題ではないと思います。

最初の行をいじる必要があると思います: RewriteEngine On RewriteBase /indocreweb/ スラッシュを削除してみるか、たとえばサイトに直接アクセスしている場合は、URL が正しいかどうかを確認してください。RewriteEngine On RewriteBase / like www .indocreweb.com

ただし、サブフォルダーまたは www.indocreweb.com/indocreweb のようなものとしてアクセスされている場合は、RewriteEngine On RewriteBase /indocreweb

お役に立てれば。

于 2013-03-20T08:24:54.220 に答える