> I need to translate a URL with a POST query string into a URL 
> like this:
> 
> http://mysite.com/pages?id=1234
> should become
> http://mysite.com/pages/1234

OTTOH:

RewriteRule  ^/pages/([^/]+)/?$        /pages?id=$1 [QSA,NS,L]

Or even easier, leave your URL like that and parse the
PATH_INFO variable for your id.

HTH,
Thomas


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to