更改 Magento 2 客户会话超时 URL

Change Magento 2 customer session timeout URL

我正在使用 Magento 版本 2.3.2 我想更改客户会话超时 URL。当前,当登录客户有一段时间不活动时,页面获取会话超时,客户将重定向到 customer/account/login/ 我想更改此 URL 并将客户重定向到其他页面。

那我需要修改哪个文件?

将您的 URL 更改为

Magento\Customer\Model\Session::authenticate()

// ...
$this->response->setRedirect(
    $this->_createUrl()->getUrl('your/custom/url', $arguments) // changed
);
// ...