Juitabs Ajax Link

Hi all!

I use CJuiTabs in my project for separation positive and negative comments.


<?php

	$this->widget('zii.widgets.jui.CJuiTabs', array(

		'tabs' => array(

			'All comments ('.$model->CommentsCount.')' => array(

					'content'=>$this->renderPartial('//comment/_Comments', array('Comments'=>$Comments,'pages' => $pages,), true),

					'id'=>'main-comment-tab'),

					

			'Positive' => 

					array( 'ajax' => array('ajax/index', 'model_id'=>$model->id, 'comment_sign'=>'1') ),

			

			'Negative' => 

					array( 'ajax' => array('ajax/index', 'model_id'=>$model->id, 'comment_sign'=>'-1') ),

					

			'Neutral' =>

					array( 'ajax' => array('ajax/index', 'model_id'=>$model->id, 'comment_sign'=>'0') ),

		),

	));

?>

It works fine, but I found one SEO problem. This code generate following HTML:


<ul>

<li><a href="#main-comment-tab" title="main-comment-tab">All comments</a></li>

<li><a href="/app/ajax/index?model_id=83&comment_sign=1" title="#yw4_tab_0">Positive</a></li>

<li><a href="/app/ajax/index?model_id=83&comment_sign=-1" title="#yw4_tab_1">Negative</a></li>

<li><a href="/app/ajax/index?model_id=83&comment_sign=0" title="#yw4_tab_2">Neutral</a></li>

</ul>

Search Engines follow this "ajax"-links and as result big amount of "404" link at site (because direct request to ajax controller return 404 error), that is no good for SEO.

Is any possibility hide these link from Search Engines !!!except robots.txt!!! ? Add rel="nofollow"?




<?php

	$this->widget('zii.widgets.jui.CJuiTabs', array(

		'tabs' => $tabs,

		'headerTemplate'=>'<li><a href="{url}" title="{id}" rel="nofollow">{title}</a></li>',


.....