RE: [EMAIL PROTECTED] help about a rewrite rule

2007-09-24 Thread tech user
Thanks a lot.It works fine. --- Axel-Stéphane SMORGRAV <[EMAIL PROTECTED]> wrote: > RewriteEngine on > RewriteCond %{QUERY_STRING} ^mid=(\d+)$ > RewriteRule ^/movie_play.php /movie%1.html? [R] > Sick of deleting your inbox? Yahoo!7 Mail has free unlimited storage. http://au.docs.yah

RE: [EMAIL PROTECTED] help about a rewrite rule

2007-09-24 Thread Axel-Stéphane SMORGRAV
RewriteEngine on RewriteCond %{QUERY_STRING} ^mid=(\d+)$ RewriteRule ^/movie_play.php /movie%1.html? [R] -Message d'origine- De : tech user [mailto:[EMAIL PROTECTED] Envoyé : mardi 25 septembre 2007 08:18 À : users@httpd.apache.org Objet : Re: [EMAIL PROTECTED] help about a re

Re: [EMAIL PROTECTED] help about a rewrite rule

2007-09-24 Thread tech user
--- Joshua Slive <[EMAIL PROTECTED]> wrote: > > See: > http://wiki.apache.org/httpd/RewriteQueryString > Thank you so much Joshua. I want to rewrite the url from, http://www.example.com/movie_play.php?mid=45298 to, http://www.example.com/movie45298.html I added the commands in httpd.conf: R

Re: [EMAIL PROTECTED] help about a rewrite rule

2007-09-24 Thread Joshua Slive
On 9/24/07, tech user <[EMAIL PROTECTED]> wrote: > Hello, > > I need to rewrite a request url,but I'm not sure how to do it correctly. > The incoming url form is like, > > http://www.example.com/script?param1=xx¶m2=yy > > The desired rewritten url is, > > http://www.example.com/xx_yy.html > > > Ple