Hi David,
Is it possible to rewrite using htaccess the jump.php?id=12345 links to something like /folder/jump/12345 ?
Thanks
Paul
Hello Paul,
Sure - firstly add the following new rule at the end of your .htaccess file:
RewriteRule ^jump/(.*)$ jump.php?id=$1 [B,L]
With that in place, edit includes/tapestry.php and look for the following code at line 98:
return $config_baseHREF."jump.php?id=".$product["id"];
...and REPLACE with:
return $config_baseHREF."jump/".$product["id"];
Cheers, David. -- PriceTapestry.com
Perfect. Thank you!
©2006-2025 IAAI Software | Contact Us | Privacy Policy
Hello Paul,
Sure - firstly add the following new rule at the end of your .htaccess file:
RewriteRule ^jump/(.*)$ jump.php?id=$1 [B,L]
With that in place, edit includes/tapestry.php and look for the following code at line 98:
return $config_baseHREF."jump.php?id=".$product["id"];
...and REPLACE with:
return $config_baseHREF."jump/".$product["id"];
Cheers,
David.
--
PriceTapestry.com