Report this

What is the reason for this report?

nginex rewrite url rule URL from http://domain.com/?var_1=val_1&var_2=val2 into http://domain.com/val_1/val_2/

Posted on June 19, 2015
Gigi

By Gigi

Hi, i want to change URL from http://domain.com/?var_1=val_1&var_2=val2 into http://domain.com/val_1/val_2/ ( http://domain.com/mobile/1-first-model/ )

where to write this rule? thnx.



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hi! First, you’ll want to find a RegEx pattern that matches /val_1/val_2 (with an optional trailing backslash): ^/(.*?)/(.*?)/?$, then you’ll want to map val_1 and val_2 to a query string:

rewrite ^/(.*?)/(.*?)/?$ /?var_1=$1&var_2=$2&$args

&$args appends the rest of the original query string to the request, so that for example http://domain.com/val_1/val_2/?something=abcd works as expected.

Make sure you restart nginx after editing the config file.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.