0

この問題は発生しており、いくつかの異なるバージョンがありますが、困惑しています。まず、私の設定を教えてください...

CodeIgniter のインストールは、Chrome を除くすべてのブラウザーで正常に動作します...問題をきれいな URL に絞り込み、.htaccess セッションは DB に保存されます

基本的に、codeigniter のデフォルトのブートストラップ構造 index.php/controller を使用すると問題なく動作しますが、mod rewrite .htaccess を使用するとセッションが失われ、クロムでのみ発生します。

そこで見たこと、試したことのいくつか...

ルートの favicon.ico http://bit.ly/UFsYjjおよびbit.ly/JPUzub

Cookie への切り替えとパスの設定 bit.ly/JPUzub

私にとっては、index.php の htaccess の削除がセッションの問題を引き起こしているという事実に要約されます。私のコードイグナイター設定は次のとおりです(ドメインなしなど、これらの設定のすべての異なる構成を試した場合は注*):

$config['sess_cookie_name']     = 'cisession';
$config['sess_expiration']      = 99999;
$config['sess_expire_on_close'] = TRUE;
$config['sess_encrypt_cookie']  = FALSE;
$config['sess_use_database']    = TRUE;
$config['sess_table_name']      = 'ci_sessions';
$config['sess_match_ip']        = FALSE;
$config['sess_match_useragent'] = FALSE;
$config['sess_time_to_update']  = 300;

$config['cookie_prefix']    = "";
$config['cookie_domain']    = ".mydomain.com";
$config['cookie_path']      = "/";
$config['cookie_secure']    = FALSE;

そして、私のhtaccessは次のとおりでした(現在は空白です...):

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    RewriteEngine on
RewriteCond $1 !^(index\.php|assets|images|robots\.txt|favicon\.ico)
RewriteRule ^(.*)$ index.php/$1 [L]

RewriteCond %{HTTP_HOST} ^mydomain.com [NC]
RewriteRule ^(.*)$ http://www.mydomain.com/$1 [L,R=301]

    #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> 
4

1 に答える 1

0

セッションの有効期限をゼロに設定してみてください。

$config['sess_expiration'] = 0;
于 2012-10-06T08:03:55.060 に答える