Накапал вот что:
The problem:
When the listing of articles exceeds the limit of articles to show, the Joomla create web links to access other pages of listing. However, when we need to go to any page and after go back to page 1, the url doesn't work.
How to solv:
There is a little "bug" in Joomla pagination class. The file name is pagination.php and can be found in /libraries/joomla/html/. You must search (around line 489) the code:
$page = $page == 0 ? '' : $page; //set the empty for removal from route
Replace this line by:
$page = $page == 0 ? '0' : $page; //set the empty for removal from route
Search this code (around line 492):
$data->start->link = JRoute::_("&limitstart=");
and replace by
$data->start->link = JRoute::_("&limitstart=0");
You also must search this code (around line 518):
$offset = $offset == 0 ? '' : $offset; //set the empty for removal from route
and replace by
$offset = $offset == 0 ? '0' : $offset; //set the empty for removal from route
So, the problem will be solved. 
Positive vibrations!
Источник:
http://joomlacode.org/gf/project/fual/news/?action=&newssort_by=news.POST_DATE&newssort_order=ascПолучилось что Первая, Предыдущаяя , 1 заработали НО, ссылка страшные стали /news?start=2&limitstart=0.
Я пошел дальше и:
в 489 строке сделал так:
$page = $page == 0 ? '
1' : $page; //set the empty for removal from route
в 492 строке сделал так:
$data->start->link = JRoute::_("&limitstart=[color=red]&start=[/color]");
В 518 строке сделал так:
$offset = $offset == 0 ? '[color=red]1[/color]' : $offset; //set the empty for removal from route
Ссылки:
Первая (имеет прямую ссылку на родитетя),
Предыдущая - работает везде и даже если ты на 2ой странице. (ссылка "/news?start=1")
1 - ссылка всегда "/news?start=1
На данный момент самое красивое решение.
Недостаток в том, что будут индексироваться 2 страницы одинакового содержания поскольку что /news что /news?start=1 одно и тоже.
PS если paginatorov не много наверно можно сделать редирект с /news?start=1 на /news
в примерах я указываю "news" поскольку у меня это блок категории Новости.
Но это решение работает на всем сайте, даже в DatsoGallery.