graham23s Posted May 17, 2010 Share Posted May 17, 2010 Hi Guys, Before i used mod rewrite to make my products and categories look like: product-information.php > into > Solpadeine-Plus-Capsules-X-(12)-659.html and category.php > into > 22-Pain-Killers.html using: Options +FollowSymLinks RewriteEngine On RewriteCond %{SCRIPT_FILENAME} !-f RewriteRule ^[^/]+-([0-9]+)\.html$ product-information.php?id=$1 [QSA,L] RewriteCond %{SCRIPT_FILENAME} !-f RewriteRule ^([0-9]+)-[^/]+\.html$ category.php?cat-id=$1 [QSA,L] instead of appending .html to the end i was trying to make them look like: Solpadeine-Plus-Capsules-X-(12)-659/ and 22-Pain-Killers/ with a slash at the end like a blog post but i'm not sure what to change in the mod rewrite code any help would be appreciated thanks guys Graham Link to comment https://forums.phpfreaks.com/topic/202074-changing-html-to/ Share on other sites More sharing options...
corbin Posted May 17, 2010 Share Posted May 17, 2010 Have you tried anything? I would suggest... removing the html and adding a /. RewriteRule ^[^/]+-([0-9]+)/$ product-information.php?id=$1 [QSA,L] Link to comment https://forums.phpfreaks.com/topic/202074-changing-html-to/#findComment-1059703 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.