Support forum login

©2006-2012 IAAI Software

Contact Us Privacy Policy

change jump url's

Submitted by marco on Mon, 2010-08-30 15:21.

Hello,

How can i change the jump url's from:
http://www.mywebsite.com/jump.php?id=74295

To something like:
http://www.mywebsite.com/out/74295/

Regards,
Marco

Submitted by support on Tue, 2010-08-31 08:09.

Hi Marco,

First, add a new rule to the end of your .htaccess as follows:

RewriteRule ^out/(.*)/$ jump.php?id=$1 [L]

And then look for the following code on line 53 of includes/tapestry.php:

      return $config_baseHREF."jump.php?id=".$product["id"];

...and REPLACE that with:

      return $config_baseHREF."out/".$product["id"]."/";

Cheers,
David.
--
PriceTapestry.com