TYPO3:indexed_search - 索引所有页面而不先访问

时间:2012-01-16 13:25:48

标签: search typo3

通常,indexed_search仅索引已访问过的页面。如果用户未访问该页面,则没有搜索结果。有没有办法索引所有页面而不访问?或者我是否必须使用其他扩展程序?

Typo3:v.4.2.8 Indexed_search:v.2.11.1

2 个答案:

答案 0 :(得分:3)

使用crawler扩展名。

答案 1 :(得分:0)

Stephen King的回答将是首选解决方案。不太复杂的方法是设置 Cron ,以便在定义的时间间隔内调用 Wget 抓取网页:

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