如何在joomla 3.1组件中生成自己的URL

时间:2013-10-27 07:30:55

标签: url-routing joomla3.1

如何在joomla 3.1组件中生成自我URL? 我的路线在这里。

my_component/view/categories/category/catID/itemID

1 个答案:

答案 0 :(得分:2)

为此,您将使用以下内容:

echo JRoute::_('index.php?option=com_mycomponent&view=categories&catid=20&Itemid=50');

Joomla会使用JRoute()类自动将其转换为SEF网址。

有关支持组件的SEF URL的更多信息,请阅读:

http://docs.joomla.org/Supporting_SEF_URLs_in_your_component

希望这有帮助