Joomla 3中的CRoute和Jroute有什么区别
$mainframe = JFactory::getApplication();
有$mainframe->redirect(CRoute::_('index.php?option=com_community&view=register&task=registerProfileType', false));
这个重定向,它不工作,与303见其他错误,但当我改变我的代码为$mainframe->redirect(JRoute::_('index.php?option=com_community&view=register&task=registerProfileType', false));
来自JoomSocial Wiki:
通过使用我们自己的库CRoute来替代JRoute,链接到JomSocial的任何部分将具有正确的Itemid和将有助于避免任何重复的链接。
你在哪里使用了重定向链接?您确定在那里加载了JomSocial库吗?
从这个例子中,您应该包括库:
include_once JPATH_ROOT.'/components/com_community/libraries/core.php';
然后使用对象:
// Get CUser object
$link = CRoute::_('index.php?option=com_community&view=profile&userid='.$userid);
echo '<a href="/.$link." mce_href="http://www.jomsocial.com/.$link.">View user profile</a>';