Forum Moderators: phranque
$rewrites = array(
'#^/top-notes.html$#' => '/site/topNotes',
'#^/top-hits.html$#' => '/site/topHits',
'#^/top-referrers.html$#' => '/site/topReferrers',
'#^/top-rank.html$#' => '/site/topRank',
'#^/top-rank-([0-9]+).html$#' => '/site/topRank/\1',
'#^/(.*)-s([0-9]+).html$#' => '/site/details/\2/\1',
'#^/index.html$#' => '/index.php',
'#^/allcategories.html$#' => '/category/showAll',
'#^/mots-([A-Z0-9]).html$#' => '/keyword/show/\1',
'#^/mots-(.*)-m([0-9]+)-p([0-9]+).html$#' => '/site/keyword/\2/\1/\3',
'#^/tag-(.*)-t([0-9]+)-p([0-9]+).html$#' => '/site/tag/\2/\1/\3',
);
$reverseRewrites = array (
'#^/site/topNotes$#' => '/top-notes.html',
'#^/site/topHits$#' => '/top-hits.html',
'#^/site/topReferrers$#' => '/top-referrers.html',
'#^/site/topRank$#' => '/top-rank.html',
'#^/site/topRank/(.*)$#' => '/top-rank-\1.html',
'#^/site/details/(.*?)/(.*)$#' => '/\2-s\1.html',
'#^/index.php$#' => '/index.html',
'#^/category/showAll$#' => '/allcategories.html',
'#^/keyword/show/(.*)$#' => '/mots-\1.html',
'#^/site/keyword/(.*?)/(.*?)/(.*)$#' => '/mots-\2-m\1-p\3.html',
'#^/site/tag/(.*?)/(.*?)/(.*)$#' => '/tag-\2-t\1-p\3.html',
);
if(Config::get("advancedUrlRewritingEnabled"))
{
$reverseRewrites += array('#^/site/category/(.*?)/(.*?)/1$#' => '/\2/',
'#^/site/category/(.*?)/(.*?)/(.*)$#' => '/\2-p\3/');
}
else
{
$reverseRewrites += array('#^/site/category/(.*)/(.*)/(.*)$#' => '/\2-c\1-p\3.html');
}