Browser back button has redirecting to two back pages in yii2 pjax

We have an e-commerce web site in Yii2, which used to rent cars. Form home page, we have a link to new page with car list. We have displayed the car list with GridView and PJax. We have a link for each car id to Car details page. Breadcrumbs as follows
Home -> Car List -> Car Details
From Car Details page, clicking on browser back button, the browser is redirecting back to home page instead of Car List page, i.e skipping Car List Page. We have tried by setting data-pjax=>0, but nothing works well. Please suggest to redirect back to Car List on browser back button click. Thanks in advance.

return $this->goHome();