Jump to content

Merging "rewrite rules" files


xwishmasterx

Recommended Posts

I have installed a directory script (arfooo directory) and uploaded a custom template which I found online.

 

My problem is the new template has a modified rewrite rules file, which doesn't work properly.

I don't know about this, so my question is if it is possible to "merge" these 2 files? (most of the content of these files are identical).

 

You can see the error on my site : http://www.dofollow-blogs.net

 

The modified rewrite.php file that doesn't work:

<?php
//////////////////////////////////////////////////////////////////////////////////
//                    copyright (c) Arfooo Annuaire                          //
//                by Hocine Guillaume (c) 2007 - 2008                        //
//                      http://www.arfooo.com/                              //
//    Licence Creative Commons http://creativecommons.org/licenses/by/2.0/fr/   //
//////////////////////////////////////////////////////////////////////////////////

$frontRewrites = array(
// TOP- PAGES
'#^/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',

// WEBMASTER PAGES
'#^/webmaster-submit-website.html$#' => '/webmaster/submitWebsite',
'#^/webmaster-login.html$#' => '/webmaster/logIn',
'#^/webmaster-lost-password.html$#' => '/webmaster/lostPassword',
'#^/webmaster-change-password.html$#' => '/webmaster/changePassword',
'#^/webmaster-management.html$#' => '/webmaster/manage',
'#^/webmaster-logoff.html$#' => '/webmaster/logoff',
'#^/webmaster-delete-site-([0-9]+).html$#' => '/webmaster/deleteSite/\1',
'#^/webmaster-edit-site-([0-9]+).html$#' => '/webmaster/editSite/\1',

// CATEGORIES PAGE
'#^/(.*)-c([0-9]+)-p([0-9]+).html$#' => '/site/category/\2/\1/\3',

// SITE DETAILS PAGE
'#^/(.*)-s([0-9]+).html$#' => '/site/details/\2/\1',

// INDEX PAGE
'#^/index.html$#' => '/index.php',

// CONTACT FORM
'#^/contact.html$#' => '/contact',

// NEWS PAGE
'#^/nouveautes.html$#' => '/site/news',

// ALL CATEGORIES PAGE
'#^/allcategories.html$#' => '/category/showAll',

// RSS FLUX NEWS
'#^/rss-nouveautes.xml$#' => '/rss/news',

// RSS FLUX CATEGORY
'#^/rss-c([0-9]+).xml$#' => '/rss/category/\1',

// RSS FLUX Site
'#^/rss-s([0-9]+).xml$#' => '/rss/site/\1',

// VOTE FORM
'#^/vote_s([0-9]+).html$#' => '/vote/popup/\1',

// COMMENT FORM
'#^/comment_s([0-9]+).html$#' => '/comment/popup/\1',

// PROBLEM REPORTING FORM
'#^/problem_reporting_s([0-9]+).html$#' => '/site/problemPopup/\1',

// SUBMITE SITE
'#^/submit-website.html$#' => '/webmaster/submit1',
'#^/submit-website-2.html$#' => '/webmaster/submit2',
'#^/submit-website-3.html$#' => '/webmaster/submit3',

// KEYWORDS
'#^/mots-([A-Z0-9]).html$#' => '/keyword/show/\1',
'#^/mots-(.*)-m([0-9]+)-p([0-9]+).html$#' => '/site/keyword/\2/\1/\3',

// SEARCH
'#^/search-p([0-9]+).html$#' => '/site/search/\1',

// APROPOS
'#^/apropos.html$#' => '/info/apropos',

// MENTIONS LEGALES
'#^/mentions.html$#' => '/info/mentions',

// PARTENAIRES
'#^/partenaires.html$#' => '/info/partenaires',

'#^/webmaster-submit-off.html$#' => '/webmaster/submitDisabled',
'#^/tag-(.*)-t([0-9]+)-p([0-9]+).html$#' => '/site/tag/\2/\1/\3',
'#^/webmaster-choose-method.html$#' => '/webmaster/chooseSiteType',
'#^/submit-website-free.html$#' => '/webmaster/submit1/basic',
'#^/submit-website-2-free.html$#' => '/webmaster/submit2/basic',
'#^/submit-website-3-free.html$#' => '/webmaster/submit3/basic',
'#^/submit-website-privileged.html$#' => '/webmaster/submit1/premium',
'#^/submit-website-2-privileged.html$#' => '/webmaster/submit2/premium',
'#^/submit-website-3-privileged.html$#' => '/webmaster/submit3/premium',
'#^/payment-select-payment-options.html$#' => '/payment/selectPaymentOptions',
'#^/payment-make-payment.html$#' => '/payment/makePayment',
'#^/payment-process-payment.html$#' => '/payment/processPayment',
'#^/webmaster-submit-website-free.html$#' => '/webmaster/submitWebsite/basic',
'#^/webmaster-submit-website-privileged.html$#' => '/webmaster/submitWebsite/premium',
'#^/webmaster-loading.html$#' => '/webmaster/loading'

);


$rewrites = array (
  '#^/category/showAll$#' => '/allcategories.html',
  '#^/comment/popup/(.*)$#' => '/comment_s\1.html',
  '#^/contact$#' => '/contact.html',
  '#^/index.php$#' => '/index.html',
  '#^/keyword/show/(.*)$#' => '/mots-\1.html',
  '#^/rss/category/(.*)$#' => '/rss-c\1.xml',
  '#^/rss/site/(.*)$#' => '/rss-s\1.xml',
  '#^/rss/news$#' => '/rss-nouveautes.xml',
  '#^/site/category/(.*)/(.*)/(.*)$#' => '/\2-c\1-p\3.html',
  '#^/site/details/(.*)/(.*)$#' => '/\2-s\1.html',
  '#^/site/keyword/(.*)/(.*)/(.*)$#' => '/mots-\2-m\1-p\3.html',
  '#^/site/news$#' => '/nouveautes.html',
  '#^/site/problemPopup/(.*)$#' => '/problem_reporting_s\1.html',
  '#^/site/search/(.*)$#' => '/search-p\1.html',
  '#^/webmaster/submit1$#' => '/submit-website.html',
  '#^/webmaster/submit2$#' => '/submit-website-2.html',
  '#^/webmaster/submit3$#' => '/submit-website-3.html',
  '#^/site/topHits$#' => '/top-hits.html',
  '#^/site/topNotes$#' => '/top-notes.html',
  '#^/site/topRank$#' => '/top-rank.html',
  '#^/site/topRank/(.*)$#' => '/top-rank-\1.html',
  '#^/site/topReferrers$#' => '/top-referrers.html',
  '#^/vote/popup/(.*)$#' => '/vote_s\1.html',
  '#^/webmaster/deleteSite/(.*)$#' => '/webmaster-delete-site-\1.html',
  '#^/webmaster/editSite/(.*)$#' => '/webmaster-edit-site-\1.html',
  '#^/webmaster/logIn$#' => '/webmaster-login.html',
  '#^/webmaster/logoff$#' => '/webmaster-logoff.html',
  '#^/webmaster/lostPassword$#' => '/webmaster-lost-password.html',
  '#^/webmaster/changePassword$#' => '/webmaster-change-password.html',
  '#^/webmaster/manage$#' => '/webmaster-management.html',
  '#^/webmaster/submitWebsite$#' => '/webmaster-submit-website.html',
  '#^/webmaster/submitDisabled$#' => '/webmaster-submit-off.html',
  '#^/site/tag/(.*)/(.*)/(.*)$#' => '/tag-\2-t\1-p\3.html',
  '#^/webmaster/chooseSiteType$#' => '/webmaster-choose-method.html',
  '#^/webmaster/submit1/basic$#' => '/submit-website-free.html',
  '#^/webmaster/submit2/basic$#' => '/submit-website-2-free.html',
  '#^/webmaster/submit3/basic$#' => '/submit-website-3-free.html',
  '#^/webmaster/submit1/premium$#' => '/submit-website-privileged.html',
  '#^/webmaster/submit2/premium$#' => '/submit-website-2-privileged.html',
  '#^/webmaster/submit3/premium$#' => '/submit-website-3-privileged.html',
  '#^/webmaster/submitWebsite/basic$#' => '/webmaster-submit-website-free.html',
  '#^/webmaster/submitWebsite/premium$#' => '/webmaster-submit-website-privileged.html',
  '#^/webmaster/loading$#' => '/webmaster-loading.html',
  '#^/payment/selectPaymentOptions$#' => '/payment-select-payment-options.html',
  '#^/payment/makePayment$#' => '/payment-make-payment.html',
  '#^/payment/processPayment$#' => '/payment-process-payment.html',
  '#^/info/apropos$#' => '/apropos.html',
  '#^/info/mentions$#' => '/mentions.html',
  '#^/info/partenaires$#' => '/partenaires.html'
);

?>

 

and the original rewrite.php file

<?php
/**
* Arfooo
* 
* @package    Arfooo
* @copyright  Copyright (c) Arfooo Annuaire (fr) and Arfooo Directory (en)
*             by Guillaume Hocine (c) 2007 - 2010
*             http://www.arfooo.com/ (fr) and http://www.arfooo.net/ (en)
* @author     Guillaume Hocine & Adrian Galewski
* @license    http://creativecommons.org/licenses/by/2.0/fr/ Creative Commons
*/

$rewrites = array(
// TOP- PAGES
'#^/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',

// WEBMASTER PAGES
'#^/webmaster-submit-website.html$#' => '/webmaster/submitWebsite',
'#^/webmaster-login.html$#' => '/webmaster/logIn',
'#^/webmaster-lost-password.html$#' => '/webmaster/lostPassword',
'#^/webmaster-change-password.html$#' => '/webmaster/changePassword',
'#^/webmaster-management.html$#' => '/webmaster/manage',
'#^/webmaster-logoff.html$#' => '/webmaster/logoff',
'#^/webmaster-delete-site-([0-9]+).html$#' => '/webmaster/deleteSite/\1',
'#^/webmaster-edit-site-([0-9]+).html$#' => '/webmaster/editSite/\1',

// SITE DETAILS PAGE
'#^/(.*)-s([0-9]+).html$#' => '/site/details/\2/\1',

// INDEX PAGE
'#^/index.html$#' => '/index.php',

// CONTACT FORM
'#^/contact.html$#' => '/contact',

// NEWS PAGE
'#^/nouveautes.html$#' => '/site/news',

// ALL CATEGORIES PAGE
'#^/allcategories.html$#' => '/category/showAll',

// RSS FLUX NEWS
'#^/rss-nouveautes.xml$#' => '/rss/news',

// RSS FLUX CATEGORY
'#^/rss-c([0-9]+).xml$#' => '/rss/category/\1',

// RSS FLUX Site
'#^/rss-s([0-9]+).xml$#' => '/rss/site/\1',

// VOTE FORM
'#^/vote_s([0-9]+).html$#' => '/vote/popup/\1',

// COMMENT FORM
'#^/comment_s([0-9]+).html$#' => '/comment/popup/\1',

// PROBLEM REPORTING FORM
'#^/problem_reporting_s([0-9]+).html$#' => '/site/problemPopup/\1',

// KEYWORDS
'#^/mots-([A-Z0-9]).html$#' => '/keyword/show/\1',
'#^/mots-(.*)-m([0-9]+)-p([0-9]+).html$#' => '/site/keyword/\2/\1/\3',

// SEARCH
//'#^/search-p([0-9]+).html$#' => '/site/search/\1',

'#^/webmaster-submit-off.html$#' => '/webmaster/submitDisabled',
'#^/tag-(.*)-t([0-9]+)-p([0-9]+).html$#' => '/site/tag/\2/\1/\3',
'#^/webmaster-choose-method.html$#' => '/webmaster/chooseSiteType',
'#^/payment-select-payment-options.html$#' => '/payment/selectPaymentOptions',
'#^/payment-make-payment.html$#' => '/payment/makePayment',
'#^/payment-process-payment.html$#' => '/payment/processPayment',
'#^/webmaster-submit-website-free.html$#' => '/webmaster/submitWebsite/basic',
'#^/webmaster-submit-website-privileged.html$#' => '/webmaster/submitWebsite/premium',
'#^/webmaster-loading.html$#' => '/webmaster/loading',

// CATEGORIES PAGE
'#^/(.*)-c([0-9]+)-p([0-9]+).html$#' => '/site/category/\2/\1/\3'
);

$reverseRewrites = array (
  '#^/category/showAll$#' => '/allcategories.html',
  '#^/comment/popup/(.*)$#' => '/comment_s\1.html',
  '#^/contact$#' => '/contact.html',
  '#^/index.php$#' => '/index.html',
  '#^/keyword/show/(.*)$#' => '/mots-\1.html',
  '#^/rss/category/(.*)$#' => '/rss-c\1.xml',
  '#^/rss/site/(.*)$#' => '/rss-s\1.xml',
  '#^/rss/news$#' => '/rss-nouveautes.xml',
  '#^/site/details/(.*?)/(.*)$#' => '/\2-s\1.html',
  '#^/site/keyword/(.*?)/(.*?)/(.*)$#' => '/mots-\2-m\1-p\3.html',
  '#^/site/news$#' => '/nouveautes.html',
  '#^/site/problemPopup/(.*)$#' => '/problem_reporting_s\1.html',
  '#^/site/topHits$#' => '/top-hits.html',
  '#^/site/topNotes$#' => '/top-notes.html',
  '#^/site/topRank$#' => '/top-rank.html',
  '#^/site/topRank/(.*)$#' => '/top-rank-\1.html',
  '#^/site/topReferrers$#' => '/top-referrers.html',
  '#^/vote/popup/(.*)$#' => '/vote_s\1.html',
  '#^/webmaster/deleteSite/(.*)$#' => '/webmaster-delete-site-\1.html',
  '#^/webmaster/editSite/(.*)$#' => '/webmaster-edit-site-\1.html',
  '#^/webmaster/logIn$#' => '/webmaster-login.html',
  '#^/webmaster/logoff$#' => '/webmaster-logoff.html',
  '#^/webmaster/lostPassword$#' => '/webmaster-lost-password.html',
  '#^/webmaster/changePassword$#' => '/webmaster-change-password.html',
  '#^/webmaster/manage$#' => '/webmaster-management.html',
  '#^/webmaster/submitWebsite$#' => '/webmaster-submit-website.html',
  '#^/webmaster/submitDisabled$#' => '/webmaster-submit-off.html',
  '#^/site/tag/(.*?)/(.*?)/(.*)$#' => '/tag-\2-t\1-p\3.html',
  '#^/webmaster/chooseSiteType$#' => '/webmaster-choose-method.html',
  '#^/webmaster/submitWebsite/basic$#' => '/webmaster-submit-website-free.html',
  '#^/webmaster/submitWebsite/premium$#' => '/webmaster-submit-website-privileged.html',
  '#^/webmaster/loading$#' => '/webmaster-loading.html',
  '#^/payment/selectPaymentOptions$#' => '/payment-select-payment-options.html',
  '#^/payment/makePayment$#' => '/payment-make-payment.html',
  '#^/payment/processPayment$#' => '/payment-process-payment.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');
}

 

I hope someone here can help me fix this issue

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.