请教在header.inc.htm怎样判断当前位置是在首页?模板

bluemaple2020-6-17 288

请教在header.inc.htm怎样判断当前位置是在首页?

最新回复(4)
  • ricewell2020-6-17
    2
    百度找下有个取当前网址的玩意,再判断
  • 燃烧的冰2020-6-17
    3
    if('index' == $route){
        echo '首页';
    }
  • bluemaple2020-6-17
    4
    燃烧的冰 if('index' == $route){ echo '首页'; }
    感谢两位大佬
  • 可燃的冰2020-6-18
    5
    <title><?php if ($route == 'index') { ?><?php echo $conf['sitename'] . '首页';?><?php } ?></title>
返回
发新帖