PDA

View Full Version : URL Rewriting - RewriteRule


erme
10-18-2006, 11:58 AM
Hi

At the moment, I have

RewriteRule ^products/([0-9]+)$ products/$1/ [R]

Works fine, but I wish to change the folder names currently called 1, 12, 123 etc to actual names like imagegal, settingsgal etc.

Oviously at the moment im using ([0-9]+) which allows me to ask for products/1 or products/1000 etc. How would I do it so I can use products/imagegal ??

Many thanks

corey84
10-18-2006, 07:01 PM
RewriteRule ^products/([a-z]+)$ products/$1/ [R]

that would catch all lowercase letter and redirect them