<?php
/**
* @author Bhavesh Ramburn <nitr021@icelabz.net>
* @copyright Copyright Bhavesh Ramburn, Icelabz.net (c) 2004-2008
* @package Minerva SEO (minervaseo.com)
* @version 0.4.0 Fri May 02 21:20:29 GMT 2008 21:20:29
* @link http://minervaseo.com IPBSEO (MinervaSEO) HomePage
* @link http://icelabz.net Authors homepage
* @link http://minervaseo.com/license/ License (please read)
*
**/
$forum_rule = array(
'(.*?)-f([0-9]+).html$',
'$forum_title-f$forum_id.html',
'showforum=$matches[2]' );
$topic_rule = array(
'(.*?)-f([0-9]+)-(.*?)-t([0-9]+).html$',
'$forum_title-f$forum_id-$topic_title-t$topic_id.html',
'showtopic=$matches[4]' );
$showuser_rule = array(
'(.*?)-u([0-9]+).html$',
'$user_title-u$user_id.html',
'showuser=$matches[2]' );
$topic_multipage_rule = array(
'(.*?)-tid([0-9]+)-pagestart([0-9]+).html$',
'$topic_title-tid$topic_id-pagestart$topic_st.html',
'showtopic=$matches[2]&st=$matches[3]' );
$forum_multipage_rule = array(
'(.*?)-f([0-9]+)-p([0-9]+).html$',
'$forum_title-f$forum_id-p$forum_st.html',
'showforum=$matches[2]&st=$matches[3]' );
$topic_view_getlastpost = array(
'(.*?)-f([0-9]+)-(.*?)-t([0-9]+)-last.html$',
'$forum_title-f$forum_id-$topic_title-t$topic_id-last.html',
'showtopic=$matches[4]&view=getlastpost' );
$topic_view_getnewpost = array(
'(.*?)-f([0-9]+)-(.*?)-t([0-9]+)-new.html$',
'$forum_title-f$forum_id-$topic_title-t$topic_id-new.html',
'showtopic=$matches[4]&view=getnewpost' );
$help_rule = array(
'help.html$',
'help.html',
'act=help' );
$helpitem_rule = array(
'help-h([0-9]+).html$',
'help-h$help_id.html',
'act=Help&CODE=01&HID=$matches[1]' );
$leaders_rule = array(
'the-moderating-team.html$',
'the-moderating-team.html',
'act=stats&CODE=leaders' );
$search_rule = array(
'search.html$',
'search.html',
'act=search' );
$search_get_new_rule = array(
'get-new-post.html$',
'get-new-post.html',
'act=search&CODE=getnew' );
$search_get_active_rule = array(
'get-active-post.html$',
'get-active-post.html',
'act=search&CODE=getactive' );
$search_get_alluser_rule = array(
'get-member-post-m([0-9]+).html$',
'get-member-post-m$user_id.html',
'act=search&CODE=getalluser&mid=$matches[1]' );
$search_get_topicuser_rule = array(
'get-member-topics-m([0-9]+).html$',
'get-member-topics-m$user_id.html',
'act=search&CODE=gettopicsuser&mid=$matches[1]' );
$showtagname_rule = array(
'showtag-(.*?).html$',
'showtag-$tag_title.html',
'automodule=minerva&CODE=showTaglist&tag=$matches[1]' );
$showtaglist_rule = array(
'showtag.html$',
'showtag.html',
'automodule=minerva&CODE=showTag' );
$blog_rule = array(
'blog.html$',
'blog.html',
'automodule=blog' );
$blogtracker_rule = array(
'blog-tracker.html$',
'blog-tracker.html',
'automodule=blog&req=ucp_tracker' );
$gallery_rule = array(
'gallery.html$',
'gallery.html',
'act=module&module=gallery' );
$urgallery_rule = array(
'your-gallery.html$',
'your-gallery.html',
'automodule=gallery&req=albums' );
$urfavgallery_rule = array(
'your-fav-gallery.html$',
'your-fav-gallery.html',
'automodule=gallery&req=favs' );
$gallerycat_rule = array(
'gallery-(.*?)-g([0-9]+).html$',
'gallery-$gallery_title-g$gallery_id.html',
'automodule=gallery&req=sc&cat=$matches[2]' );
$lastclick_rule = array(
'online-by-last-click.html$',
'online-by-last-click.html',
'act=Online&CODE=listall&sort_key=click' );
$lastmember_rule = array(
'online-by-member-name.html$',
'online-by-member-name.html',
'act=Online&CODE=listall&sort_key=name&sort_order=asc&show_mem=reg' );
$mycontrol_rule = array(
'my-controls.html$',
'my-controls.html',
'act=UserCP&CODE=00' );
$mycontrolviewtopic_rule = array(
'view-topics-subscription.html$',
'view-topics-subscription.html',
'act=UserCP&CODE=26' );
$mycontrolviewforum_rule = array(
'view-forum-subscription.html$',
'view-forum-subscription.html',
'act=UserCP&CODE=50' );
$message_inbox_rule = array(
'messages-inbox.html$',
'messages-inbox.html',
'act=Msg&CODE=01&VID=in' );
$message_sent_rule = array(
'messages-sent.html$',
'messages-sent.html',
'act=Msg&CODE=01&VID=sent' );
$message_save_rule = array(
'messages-saved.html$',
'messages-saved.html',
'act=Msg&CODE=20' );
$list_of_rules['forum_rule'] = $forum_rule;
$list_of_rules['topic_rule'] = $topic_rule;
$list_of_rules['showuser_rule'] = $showuser_rule;
$list_of_rules['topic_multipage_rule'] = $topic_multipage_rule;
$list_of_rules['forum_multipage_rule'] = $forum_multipage_rule;
$list_of_rules['topic_view_getlastpost'] = $topic_view_getlastpost;
$list_of_rules['topic_view_getnewpost'] = $topic_view_getnewpost;
$list_of_rules['help_rule'] = $help_rule;
$list_of_rules['helpitem_rule'] = $helpitem_rule;
$list_of_rules['leaders_rule'] = $leaders_rule;
$list_of_rules['search_rule'] = $search_rule;
$list_of_rules['search_get_new_rule'] = $search_get_new_rule;
$list_of_rules['search_get_active_rule'] = $search_get_active_rule;
$list_of_rules['search_get_alluser_rule'] = $search_get_alluser_rule;
$list_of_rules['search_get_topicuser_rule'] = $search_get_topicuser_rule;
$list_of_rules['showtagname_rule'] = $showtagname_rule;
$list_of_rules['showtaglist_rule'] = $showtaglist_rule;
$list_of_rules['blog_rule'] = $blog_rule;
$list_of_rules['blogtracker_rule'] = $blogtracker_rule;
$list_of_rules['gallery_rule'] = $gallery_rule;
$list_of_rules['urgallery_rule'] = $urgallery_rule;
$list_of_rules['urfavgallery_rule'] = $urfavgallery_rule;
$list_of_rules['gallerycat_rule'] = $gallerycat_rule;
$list_of_rules['lastclick_rule'] = $lastclick_rule;
$list_of_rules['lastmember_rule'] = $lastmember_rule;
$list_of_rules['mycontrol_rule'] = $mycontrol_rule;
$list_of_rules['mycontrolviewtopic_rule'] = $mycontrolviewtopic_rule;
$list_of_rules['mycontrolviewforum_rule'] = $mycontrolviewforum_rule;
$list_of_rules['message_inbox_rule'] = $message_inbox_rule;
$list_of_rules['message_sent_rule'] = $message_sent_rule;
$list_of_rules['message_save_rule'] = $message_save_rule;
?>