Custom Rewrite Rules for osCommerce

Custom URLs and redirections.

Custom Rewrite Rules for osCommerce

Postby e-electr » Sun Mar 16, 2008 11:49 am

Hi
I have a working site with MSU 1.1, (www.e-electronica.es) but I have created new php files. How can I build rewrite rules for this new pages and having the language delimiter working.
Now: www.e-electronica.es/warranty.php
Needed: www.e-electronica.es/en/warranty.html

I also plan to further extend my web and add way more new pages. So please give a general solution for any situation ( If posible)

Thank you,
Bye bye

P.S. Nice work with this MSU, realy nice ;)
e-electr
 
Posts: 6
Joined: Sun Mar 16, 2008 11:40 am
Location: Madrid

Re: Custom Rewrite Rules for osCommerce

Postby ~J~ » Sun Mar 16, 2008 12:27 pm

You need something like this:

Code: Select all
RewriteRule ^([a-z]{2})/warranty.html$ warranty.php?language=$1 [L,QSA]
Magic SEO URLs are now available for
osCommerce, CRE Loaded, Zen Cart, PrestaShop, OpenCart, CubeCart, phpBB and phpBB3!
~J~
InveoStore.com Founder
 
Posts: 1053
Joined: Sat Feb 02, 2008 11:07 am
Location: Prague, Central Europe

Re: Custom Rewrite Rules for osCommerce

Postby e-electr » Sun Mar 16, 2008 12:35 pm

Thnx for your fast answer...

I should work but is not ... I don't know why...
Any sugestions?

Thnx
e-electr
 
Posts: 6
Joined: Sun Mar 16, 2008 11:40 am
Location: Madrid

Re: Custom Rewrite Rules for osCommerce

Postby ~J~ » Sun Mar 16, 2008 12:39 pm

Make sure .htaccess file is readonly. Otherwise your changes will be lost.
Magic SEO URLs are now available for
osCommerce, CRE Loaded, Zen Cart, PrestaShop, OpenCart, CubeCart, phpBB and phpBB3!
~J~
InveoStore.com Founder
 
Posts: 1053
Joined: Sat Feb 02, 2008 11:07 am
Location: Prague, Central Europe

Re: Custom Rewrite Rules for osCommerce

Postby e-electr » Sun Mar 16, 2008 12:52 pm

Ok, let's say that your solution is partialy good for waht I need/whant
I will explain myself...

In my page I have a "Information" secction.....
» Who we are?
» Where we are?
» Privacy Policy
» General conditions
» Payment modalities
» Shipping and returns
» Warranty
» Contact Us

For example Warranty will link to: http://www.e-electronica.es/warranty.php
But I whant a automatic redirect to a http://www.e-electronica.es/es/warranty.html

Your solution will make available my warranty.php trough http://www.e-electronica.es/es/warranty.html. But in my page I still have a link to http://www.e-electronica.es/warranty.php
I hope you can understand my need now.
Tnkx
e-electr
 
Posts: 6
Joined: Sun Mar 16, 2008 11:40 am
Location: Madrid

Re: Custom Rewrite Rules for osCommerce

Postby e-electr » Sun Mar 16, 2008 1:16 pm

You will understand better my need if you search for a way to automaticaly redirect: https://www.e-electronica.es/password_forgotten.php and to maintain my language structure ie: https://www.e-electronica.es/es/password_forgotten.php
I can not modify catalog/includes/boxes/Login.php for all my 5 languages. no?

Why this link is not automaticaly rewriten?
It's standard osCommerce... Well I need this rewriten plz :)

I think that what I need is for you to modify the code of MSU to adapt to my needs, becose there is no other way to do What I need.
How much for 1link added to your MSU?
e-electr
 
Posts: 6
Joined: Sun Mar 16, 2008 11:40 am
Location: Madrid

Re: Custom Rewrite Rules for osCommerce

Postby 9827579 » Wed Mar 18, 2009 3:04 pm

Has anyone solved this problem? I have got the same problem...
I have got a page: /about.php which can be accessed through /en/about.html
but I want it to be redirected to /en/about.html when typed /about.php
9827579
 
Posts: 2
Joined: Mon Mar 16, 2009 11:42 pm

Re: Custom Rewrite Rules for osCommerce

Postby ~J~ » Thu Mar 19, 2009 11:47 am

Magic SEO URLs are now available for
osCommerce, CRE Loaded, Zen Cart, PrestaShop, OpenCart, CubeCart, phpBB and phpBB3!
~J~
InveoStore.com Founder
 
Posts: 1053
Joined: Sat Feb 02, 2008 11:07 am
Location: Prague, Central Europe

Re: Custom Rewrite Rules for osCommerce

Postby 9827579 » Thu Mar 19, 2009 11:31 pm

Ok this is clear to me, but can you give me a correct 301 redirect rule when using multilanguage mode? It does not seem to work for me....

In other words: how can I use
Code: Select all
RewriteRule ^about.php$ about.html [R=301,L,QSA]

in multilanguage?

(taken from http://www.magic-seo-url.com/board/rewrite-rules-for-zen-cart-mods-15.html
9827579
 
Posts: 2
Joined: Mon Mar 16, 2009 11:42 pm

Re: Custom Rewrite Rules for osCommerce

Postby shotputty » Wed Jun 30, 2010 4:47 am

please read my solution for your problem below:


I made a MOD which I will post here. It works for custom pages, you only need to change the tep_href_link function in your includes/html_output.php file, and add 1 line of code per new page in your .htaccess file.

First backup!!
Then replace from
// The HTML href link wrapper function
until
return $link ; }

with this code:

Code: Select all
  ////
// The HTML href link wrapper function
  function tep_href_link($page = '', $parameters = '', $connection = 'NONSSL', $add_session_id = true, $search_engine_safe = true) {
    global $request_type, $session_started, $SID, $unCurrentLang  ;

    if (!tep_not_null($page)) {
      die('</td></tr></table></td></tr></table><br><br><font color="#ff0000"><b>Error!</b></font><br><br><b>Unable to determine the page link!<br><br>');
    }

    if ($connection == 'NONSSL') {
     $link = HTTP_SERVER . DIR_WS_HTTP_CATALOG ;
     
     
    } elseif ($connection == 'SSL') {
      if (ENABLE_SSL == true) {
        $link = HTTPS_SERVER . DIR_WS_HTTPS_CATALOG;
      } else {
        $link = HTTP_SERVER . DIR_WS_HTTP_CATALOG;
      }
    } else {
      die('</td></tr></table></td></tr></table><br><br><font color="#ff0000"><b>Error!</b></font><br><br><b>Unable to determine connection method on a link!<br><br>Known methods: NONSSL SSL</b><br><br>');
    }


//Modification for Magic Seo Url custom pages addition for OScommerce

//for each additional page add a line with a subsequent number like: $customepages_non_seo[following number] = "your_new__non_seo_name_page.php" ;
$customepages_non_seo[0] = "all_products.php" ;
$customepages_non_seo[1] = "some_products.php" ;

//for each additional page add a line with the SEO NAME YOU WANT (!) with a subsequent number like: $customepages_yes_seo[corresponding number] = "your-seo-name-for-that-page-without-extension-if-you-like" ;
$customepages_yes_seo[0] = "all-products" ;
$customepages_yes_seo[1] = "some-products" ;

//add each new page in includes/filenames.php like any other page (example): define('FILENAME_SOME_PRODUCTS', 'some_products.php');
//add catalog/your_new_file.php and includes/languages/your_new_file.php (this is basic OScommerce knowledge for adding pages)

//place 1 rule per new page in .htaccess like this:
// RewriteRule ^([a-z]{2})/all-products$ all_products.php?language=$1 [L,QSA]
//change accordingly to your own names for each line you add

if (tep_not_null($parameters)) {

switch ($page) {

    case in_array($page, $customepages_non_seo) :
       $seokey = array_search($page, $customepages_non_seo); // $seokey = ''number corresponding to the page;
       $parts = explode("=",$parameters);  //break the string up around the "=" character in $mystring
 
           if ($parameters == 'language=' . $parts['1']) {
             $link .= $parts['1'] . '/' . $customepages_yes_seo[$seokey] ;
           } else {
             $link .= $unCurrentLang . '/' . $customepages_yes_seo[$seokey] . '?' . tep_output_string($parameters);
             $separator = '&';
           }
    break;




  //original code
   default:
   $link .= $page . '?' . tep_output_string($parameters);
   $separator = '&';
//end original code
}

} else {

switch ($page) {

    case in_array($page, $customepages_non_seo) :
    $seokey = array_search($page, $customepages_non_seo); // $seokey = ''number corresponding to the page;
     $link .= $unCurrentLang  . '/' . $customepages_yes_seo[$seokey] ;
     $separator = '?';
   break;



 default:
 //original code
 
  $link .= $page ;
  $separator = '?';
//end original code
}}
//end of modification for Magic Se0 Url









    while ( (substr($link, -1) == '&') || (substr($link, -1) == '?') ) $link = substr($link, 0, -1);

// Add the session ID when moving from different HTTP and HTTPS servers, or when SID is defined
    if ( ($add_session_id == true) && ($session_started == true) && (SESSION_FORCE_COOKIE_USE == 'False') ) {
      if (tep_not_null($SID)) {
        $_sid = $SID;
      } elseif ( ( ($request_type == 'NONSSL') && ($connection == 'SSL') && (ENABLE_SSL == true) ) || ( ($request_type == 'SSL') && ($connection == 'NONSSL') ) ) {
        if (HTTP_COOKIE_DOMAIN != HTTPS_COOKIE_DOMAIN) {
          $_sid = tep_session_name() . '=' . tep_session_id();
        }
      }
    }

    if ( (SEARCH_ENGINE_FRIENDLY_URLS == 'true') && ($search_engine_safe == true) ) {
      while (strstr($link, '&&')) $link = str_replace('&&', '&', $link);

      $link = str_replace('?', '/', $link);
      $link = str_replace('&', '/', $link);
      $link = str_replace('=', '/', $link);

      $separator = '?';
    }

    if (isset($_sid)) {
      $link .= $separator . tep_output_string($_sid);
    }

    return $link ;
  }


add each new page in includes/filenames.php like any other page (example): define('FILENAME_SOME_PRODUCTS', 'some_products.php');
add catalog/your_new_file.php and includes/languages/your_new_file.php (this is basic OScommerce knowledge for adding pages)

place 1 rule per new page in .htaccess like this:
RewriteRule ^([a-z]{2})/all-products$ all_products.php?language=$1 [L,QSA]
change accordingly to your own names for each line you add

IMPORTANT, this code (above) contains two example filenames, you need to adjust them or add new ones according to your own pagenames!!

IMPORTANT 2: this code is setup for multilanguage, it will add the /en or /fr or /de between your url and your filename.

shotputty
Follower
 
Posts: 45
Joined: Tue May 11, 2010 2:28 pm


Return to Custom Rewrite Rules

Who is online

Users browsing this forum: No registered users and 1 guest

cron