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 Quote Link to comment 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] Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.