Код в header или туда где есть переменная Content-type: text/html; charset=”.LANG_CHARSET
$x = $_SERVER['REQUEST_URI'];
if(strpos($x, '/bridzhi/')!==false){
$APPLICATION->SetPageProperty("robots", "noindex, nofollow");
}
if(strpos($x, '/bridzhi/')==false){
$APPLICATION->SetPageProperty("robots", "noindex, nofollow");
}
!==false – 1 вид условия
==false – 2 вид условия





