Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/typo3/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Typo3 类型3:索引搜索,禁用某些控制器操作的索引_Typo3_Typoscript_Fluid_Extbase - Fatal编程技术网

Typo3 类型3:索引搜索,禁用某些控制器操作的索引

Typo3 类型3:索引搜索,禁用某些控制器操作的索引,typo3,typoscript,fluid,extbase,Typo3,Typoscript,Fluid,Extbase,我有一个带有2个动作2个不同模板的表单插件: -ShowForm.html -提交表单后返回Success.html 问题是这两个都被搜索引擎编入了索引。我只希望表单本身ShowForm.html出现在搜索结果中 有没有办法禁用特定操作的索引?在这种情况下,我可以防止成功操作被索引。只需添加标记,如下所示: This part is indexed ... <!--TYPO3SEARCH_end--> ... Your template which should not be ind

我有一个带有2个动作2个不同模板的表单插件: -ShowForm.html -提交表单后返回Success.html

问题是这两个都被搜索引擎编入了索引。我只希望表单本身ShowForm.html出现在搜索结果中

有没有办法禁用特定操作的索引?在这种情况下,我可以防止成功操作被索引。

只需添加标记,如下所示:

This part is indexed
...
<!--TYPO3SEARCH_end-->
...
Your template which should not be indexed
...
<!--TYPO3SEARCH_begin-->
...
This part is indexed again