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
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
--- 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
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