Answer the question
In order to leave comments, you need to log in
How to hide pagination pages from indexing in Bitrix?
The section has a pagination of 5 pages.
You need to hide pages 2 to 5 with a meta tag .
<meta name="robots" content="noindex, follow" />
Answer the question
In order to leave comments, you need to log in
As a result, I wrote in header.php:
$url = 'https://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
if (strpos($url,'emali/?PAGEN_') !== false) {
$APPLICATION->SetPageProperty("robots", "noindex, nofollow");
}
if ($_GET['PAGEN_1']) {
$APPLICATION->SetPageProperty("robots", "noindex, nofollow");
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question