我正在写一个Joomla!组件,在任务完成后,我想用一条消息重定向用户:
$this->setMessage("Your order was placed successfully.");
$this->setRedirect(JRoute::_('index.php?option='.$this->option.'&view=orders', false));
在浏览器中,重定向到http://localhost:64895/component/mycomponent/?view=orders
。但是,我有一个菜单项链接到此视图,我通常会在http://localhost:64895/orders.html
访问同一页面。
是否可以让JRoute
定位此菜单项而不是标准SEF网址?