0

他の人がそれを見ることができないように、別のコントローラーにアクセスするためのログインスクリプトを作成しました。

これで、別のコントローラーにリダイレクトするリダイレクト機能がコントローラーにあります。

リダイレクトすると正常に動作しますが、?私のbase_urlと次のようなコントローラーの間:

http://kees.een-site-bouwen.nl/?/member/index

どうすればそれを解決できますか?

私のホームコントローラー機能:

public function process(){
    // Load the model
    $this->load->model('login_model');
    // Validate the user can login
    $result = $this->login_model->validate();
    // Now we verify the result
    if(! $result){
        // If user did not validate, then show them login page again
        $msg = '<font color=red>Invalid username and/or password.</font><br />';
        $this->index($msg);
    }else{
        // If user did validate, 
        // Send them to members area
        redirect('/member/index');
    }        
}  

それは私の.htaccessファイルと関係がありますか?

次のようになります。

<IfModule mod_rewrite.c>
RewriteEngine On
#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} ^LoginTut.*
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>
 ErrorDocument 404 index.php
</IfModule>
4

3 に答える 3

0

htaccessを次のように変更します。

<IfModule mod_rewrite.c>
RewriteEngine On

RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ index.php/$1 [L]

RewriteCond %{REQUEST_URI} ^LoginTut.*
RewriteRule ^(.*)$ index.php/$1 [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

URLがではindex.php/controllerなくに解決されるようにindex.php?/controller

于 2013-03-22T11:55:45.163 に答える
0

次のように query_strings を無効にすることで解決しました。

から:

$config['enable_query_strings'] = TRUE;

に:

$config['enable_query_strings'] = FALSE;

私のConfig.phpファイルで。

于 2013-03-26T09:41:50.403 に答える
0

redirect('member/index') の代わりに使用しredirect('/member/index')ます。

于 2013-03-22T11:39:15.810 に答える