-4

重複の可能性:
.htaccess が 500 エラーをスローする

CodeIgniter を使用しており、URL の「index.php」を削除する必要があります。CI チュートリアルから .htaccess ファイルをコピーし、 $config['index_page'] = ''; を空にしました。.htaccess をルート ディレクトリに配置します。

  • .htaccess ファイルがなくても問題なく動作しますが、醜い: www.example.com/index.php/site/home
  • 何らかの理由で機能せず、500 のエラーがスローされます。
  • ログには、試行ごとに繰り返される行があります: [Thu Dec 20 04:01:13 2012] [alert] [client 2.55.118.161] /home/morro1980/data/www/knight-guard.org/. htaccess: ディレクティブには追加の引数が必要です。
  • mod_rewrite がインストールされ、機能している

バグはどこにあり、どうすれば解決できますか?

前もって感謝します

私の .htaccess ファイル:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    #Removes access to the system folders by users.
    #Additionly this will allow you to create a System.php controller,
    #previously this would not have not 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>

私のサイトコントローラー:

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

class Site extends CI_Controller {
    public function index(){
        $this->home();
    }
    public function home(){
        echo "default function started.<br/>";
        $this->hello();
        $data['title'] = 'Home!';
        $data['name'] = 'Ilia';
        $data['fname'] = 'Lev';
        $data['operation'] = 'minus';
        $data['val1'] = 5;
        $data['val2'] = 7;
        echo $data['operation']."<br/>";
        $data['result'] = $this->math($data);
        $this->viewLoad("home_view", $data);
        echo "<br/>";
    }
    public function hello(){
        echo "hello function started.<br/>";
    }
    public function math($data){
        $operation = $data['operation'];
        $val1 = $data['val1'];
        $val2 = $data['val2'];
        $this->load->model("math");
        return $this->math->calculate($operation, $val1, $val2)."<br/>";
    }
    public function viewLoad($whatToView, $data){
        try{
            $this->load->view($whatToView, $data);
        }catch(Exception $e){
            echo "There is no such view";
        }
    }
    public function about(){
        $data['title'] = "About!";
        $this->viewLoad("about_view",$data);
    }
}
4

2 に答える 2

1

<IfModule></IfModule>.htaccess で一致していることを確認してください。

于 2012-12-20T03:37:37.540 に答える
1

最初<ifModule>は閉じていません。これは次のとおりです。

RewriteRule ^(.*)$ index.php?/$1 [L]
<IfModule>

である必要があります

RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
#^
于 2012-12-20T03:39:26.537 に答える