コミュニティアチーブメントバーを展開する。

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

この会話は、活動がないためロックされています。新しい投稿を作成してください。

解決済み

Adobe Search & Promote crawling issue

Avatar

Level 3

Hi,

We are using Adobe Search & Promote to crawl our pages There is a search field on the  page component which is including the top Navigation links as well in the Search crawling and giving results that are not expected, We are handling the crawl entry point to noindex which ideally should not crawl the navigation links text, still we have the issue, Please let me know if there is a way to avoid the Top Navigation from the search scope

Thanks,

Ganesh

1 受け入れられたソリューション

Avatar

正解者
Level 1

Hi,

You can filter out some parts of a webpage if you insert a noindex to a DIV class, so Adobe is not indexing the content of that portion.

Menu item:  Settings - Filtering - Filtering script

Here you can insert a small Perl script that is run for each page you are crawling. What it does is to search-replace a DIV class and insert a noindex to the class.

undef $/;

my $doc = <>;

$doc =~ s{<div class="top-bar">}{<div class="top-bar noindex">}is;

print $doc;

The trick I read here:

https://stackoverflow.com/questions/25630482/adobe-searchpromote-non-standard-noindex-tag

元の投稿で解決策を見る

1 返信

Avatar

正解者
Level 1

Hi,

You can filter out some parts of a webpage if you insert a noindex to a DIV class, so Adobe is not indexing the content of that portion.

Menu item:  Settings - Filtering - Filtering script

Here you can insert a small Perl script that is run for each page you are crawling. What it does is to search-replace a DIV class and insert a noindex to the class.

undef $/;

my $doc = <>;

$doc =~ s{<div class="top-bar">}{<div class="top-bar noindex">}is;

print $doc;

The trick I read here:

https://stackoverflow.com/questions/25630482/adobe-searchpromote-non-standard-noindex-tag