我怎样才能只在joomla的主页上显示一条消息?我有兴趣在 site.com 上显示它,而不是在 site.com/index.php/page 或任何其他网站上显示它。
我已经测试了以下内容:
<?php $app = JFactory::getApplication();
$menu = $app->getMenu();
$lang = JFactory::getLanguage();
if ($menu->getActive() == $menu->getDefault($lang->getTag())) : ?>this is the homepage
<?php endif; ?>
和这个
<?php $menu = & JSite::getMenu();
if ($menu->getActive() == $menu->getDefault()) {
echo "this is the homepage";
}
?>
问题是我仍然可以在诸如http://site.com/index.php/category/id/78-article之类的页面上看到消息“这是主页”,这显然不是主页。似乎每当链接中有index.php时,上面的代码就认为它属于主页。