Rewrite all directory URLs with certain exceptions

Cristian Rusu crirus at gmail.com
Wed Nov 28 12:33:04 UTC 2012


On Wed, Nov 28, 2012 at 2:25 PM, Edho Arief <edho at myconan.net> wrote:

> On Wed, Nov 28, 2012 at 7:11 PM, Cristian Rusu <crirus at gmail.com> wrote:
> > Excellent, it worked
> >
> > I have another urgent matter on a server live we just switched to
> >
> > I need that links like this:
> > http://www.example.com/?v=JYH253CT
> >
> > to be rewritten as http://www.example.com/v.php?dl=JYH253CT
> >
> >
> > Please help, server is down :(
> >
>
> http://nginx.org/en/docs/http/ngx_http_core_module.html#variables
>
> Maybe something like this.
>
> location = / {
>   if ($arg_v) {
>     rewrite ^ /v.php?dl=$arg_v;
>   }
> }
>

I tried this from a htaccess to nginx converter

if ($query_string ~ "^v=(.*)$"){
    rewrite ^/index\.php$ /v.php?dl=$1 break;
}

But the resulting url is /v.php?dl=%1&v=FER34S

beats me!!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.nginx.org/pipermail/nginx/attachments/20121128/b2191491/attachment.html>


More information about the nginx mailing list