Laravel 4:检测并更新目标网址

时间:2014-05-24 04:06:52

标签: php laravel laravel-4

如果目标网址具有特定值,则如何检测目标网址并对其进行编辑:

if($intended_url == 'http://.../logout')
{
    //forget or update it
    $intended_url = '/home';
}

2 个答案:

答案 0 :(得分:3)

Laravel为预期的网址设置url.intended会话变量。

你可以这样做:

Route::get('/logout', function (){

      if (Session::get('url.intended')) == 'http://example.com/logout')
      {
           Session::put('url.intended', 'http://example.com/home');
      }
});

答案 1 :(得分:-2)

使用...

if (location.href =="http://google.com"){
alert('its google');
} else{
alert('location is ' + location.href);
};

window.location是获取此值的对象。

您可以使用

进行指定
location.href = "http://hotmail.com";