我具有以下代码来规范我的wordpress网站标题的所有页面:
<link rel="canonical" href="https://example.com<?php echo $_SERVER['REQUEST_URI'];?>">
我现在有https://example.com/stage-promo/344
这个页面
<link rel="canonical" href="https://example.com/stage-promo/344" />
但是对于此页面https://example.com/stage-promo/344
,我希望得到:
<link rel="canonical" href="https://example.com/stage-promo/" />
如何在php代码中添加条件
<link rel="canonical" href="https://example.com<?php echo $_SERVER['REQUEST_URI'];?>">
获得
<link rel="canonical" href="https://example.com/stage-promo/" />
对于https://example.com/stage-promo/344
之类的页面?