Re: need a help in htaccess - please help



On 08/13/2006 01:49 PM, persiancity wrote:
Hi there

I need a help to create a .htaccess file to:


convert such urls:
http://mydomain.com/getpicture/33.jpg


to


http://mydomain.com/getpicture.php?foid=33

[...]

Perhaps something like this would work (on one line):

RedirectMatch (.*)/getpicture/([^.]+).jpg $1/getpicture.php?foid=$2.jpg


.