简体   繁体   中英

TYPO3: indexed_search - index all pages without visiting first

Normally indexed_search only indexes already visited pages. If a user hasn't visited the page, there are no search results. Is there a way to index all pages without visiting? Or do I have to use another extension?

Typo3: v. 4.2.8 Indexed_search: v. 2.11.1

使用搜寻器扩展。

StephenKing's answer would be the preferred solution. Less sophisticated method is setting Cron to call Wget to crawl pages in a defined interval:

0 * * * *  wget -nv -nc -nd -np -r -l0 -P/var/tmp/ -erobots=off --accept=htm,html,php --wait=1 --delete-after http://www.example.com/ >/dev/null 2>&1

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM