これは私のページネーションリンクです:
<div class="paging" style="margin-bottom:0px;">
<div class="paging_right" style="margin-bottom:0px;">
<?php echo $this->paginator->prev('<< '.__('previous', true), array('url'=>array('action'=>'ViewMember/ticket')), null, array('class'=>'disabled'));?>
|<?php echo $this->paginator->numbers(array('url'=>array('action'=>'ViewMember/ticket'),'pagecnt'=>$ticketcount,'pagenum'=>$pagenumticket));?>
<?php echo $this->paginator->next(__('next', true).' >>', array('url'=>array('action'=>'ViewMember/ticket')), null, array('class'=>'disabled'));?>
</div>
</div>
これは、リンクをクリックしたときの URL です。
http://localhost/mysite/TestController/ViewMember/ticket/page:2
しかし、私はこのようなURLにしたい:
http://localhost/mysite/TestController/ViewMember/ticket/page:2/#tinfo
これどうやってするの?