Session 更改Magento 2客户会话超时URL

Session 更改Magento 2客户会话超时URL,session,magento2,Session,Magento2,我正在使用Magento 2.3.2版,我想更改客户会话超时URL。当前,当登录客户处于非活动状态一段时间后,页面获取会话超时,客户将重定向到customer/account/login/我想更改此URL并将客户重定向到其他页面 对于我需要更改的文件?将您的URL更改为 Magento\Customer\Model\Session::authenticate() // ... $this->response->setRedirect( $this->_createUrl

我正在使用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
);
// ...