Laravel 重定向会影响跳出率吗?
Does Laravel redirect affect bounce rate?
我正在使用此语句将着陆页重定向到另一个页面。
Route::get('/', ['as' => 'home', function() {
Redirect::to('/'.$lang.'/someotherpage');
}
Google 分析表明跳出率如下:
Bounce Rate is the percentage of single-page visits (i.e. visits in
which the person left your site from the entrance page without
interacting with the page).
那么在我的着陆页上使用重定向会影响跳出率吗?
不,它不应该影响跳出率。 Redirect::to()
生成 302 重定向响应,浏览器直接对其作出反应。 Google Analytics JavaScript 基于,永远不会 运行,因此不会看到或跟踪重定向。
JavaScript 重定向可能有所不同。虽然我不确定。
我正在使用此语句将着陆页重定向到另一个页面。
Route::get('/', ['as' => 'home', function() {
Redirect::to('/'.$lang.'/someotherpage');
}
Google 分析表明跳出率如下:
Bounce Rate is the percentage of single-page visits (i.e. visits in which the person left your site from the entrance page without interacting with the page).
那么在我的着陆页上使用重定向会影响跳出率吗?
不,它不应该影响跳出率。 Redirect::to()
生成 302 重定向响应,浏览器直接对其作出反应。 Google Analytics JavaScript 基于,永远不会 运行,因此不会看到或跟踪重定向。
JavaScript 重定向可能有所不同。虽然我不确定。