0

フロー:

- user visits a page say www.mysite.com/somepage/1
- user clicks on Log Out button or times out and logs out
   *user log out detected redirect to home page but save the referer URL
   *redirect to /login?ref=$_SERVER['HTTP_REFERER'] (actual code test if its set)
- user sees login page and relogs back
- user is redirected back to refere url that is saved in $_GET['ref']

ユーザーが複数のタブを開いている場合、最初のタブ$_GET['ref']に設定されているのと同じ URL に設定されます。例えば:

例:

  Tab 1 : /somepage/hello/world
  Tab 2: /another/page/1

ユーザーがタブ 1からログアウトすると、次の場所にリダイレクトされます。

/login?ref=http://site.com/somepage/hello/world (CORRECT)

ユーザーがタブ 2のページを更新すると、次の場所にリダイレクトされます。

/login?ref=http://site.com/somepage/hello/world 
   NOT CORRECT, IT SHOULD REDIRECT TO: 
/login?ref=http://site.com/another/page/1
4

1 に答える 1

2

どこにもリダイレクトしないでください。ユーザーが既にアクセスしているのと同じ URL で再ログイン プロセスを処理します。これにより、すべてのタブとブラウザ ウィンドウの URL がそのまま保持されます。

于 2013-04-05T20:41:56.267 に答える