Reputation: 5619
I have a TYPO3 6.2.31 instance. How can I exclude pages from the search?
And if they are already indexed how can I remove them from index?
Thanks
Upvotes: 0
Views: 1704
Reputation: 10791
Depending on your search engine you could use the flag "exclude from search" in the pages properties (your search engine should respect this flag).
Removing pages from an index normaly needs a rebuild of the index.
Some search engines check and respect visibility at the time of search, but as your pages still are available the finding will not be removed from results for you.
Disabling indexing based on the field no_search
("exclude from search"):
[globalVar page|no_search = 1]
page.config.index_enable = 0
[global]
Upvotes: 4