Magento 2 CE: Bộ điều khiển phía trước đạt 100 lần lặp bộ định tuyến khớp
Tôi đang sử dụng Magento 2 CE Phiên bản 2.1.0 Tham khảo http://inchoo.net/magento-2/routing-in-magento-2/ để định tuyến. Router.phpMã điều khiển của tôi public function match(\Magento\Framework\App\RequestInterface $request) { $identifier = trim($request->getPathInfo(), '/'); if (strpos($identifier, 'test') !== false) { $request->setModuleName('moduletest')->setControllerName('test')->setActionName('test'); } else { //There is no match return; } return $this->actionFactory->create( 'Magento\Framework\App\Action\Forward', ['request' …