change jump url's
Submitted by marco on Mon, 2010-08-30 15:21.Price Tapestry
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
Support forum loginActive forum topics©2006-2012 IAAI Software |
change jump url'sSubmitted by marco on Mon, 2010-08-30 15:21.Price Tapestry
Hello, How can i change the jump url's from: To something like: Regards, |
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