<div dir="ltr">Steve,<div><br></div><div>Thanks for the suggestion. How would this additional check change the solution I proposed on 9/16? It looks like it would prevent the rewrite from occurring if other arguments (instead of title) were present?</div>

<div><br></div><div>Thanks again,</div><div><br></div><div>Andrew</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Sun, Sep 8, 2013 at 11:31 PM, Steve Holdoway <span dir="ltr"><<a href="mailto:steve@greengecko.co.nz" target="_blank">steve@greengecko.co.nz</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I think you need to do some regexp on the args<br>
<br>
if ( $args ~ title=([^&]+) {<br>
        rewrite ^(.*)title=([^&]+).*$ /article/$2? last;<br>
}<br>
<br>
Note... totally untested.<br>
<br>
Steve<br>
<div class="HOEnZb"><div class="h5"><br>
<br>
On Sun, 2013-09-08 at 23:01 -0500, Andrew Martin wrote:<br>
> Hello,<br>
><br>
><br>
> I have read through the nginx rewrite documentation and looked at<br>
> various examples, but can't figure out how to create a rewrite rule<br>
> for the following (if it is possible). I'd like to rewrite the URL of<br>
> a php file with a $_GET argument and replace it with just the value of<br>
> the $_GET argument. For example, I'd like to<br>
> replace /index.php?title=my_example_title with /my_example_title<br>
> or /article/my_example_title. I've tried several regular expressions<br>
> to match index.php, as well as the $args and $arg_title nginx<br>
> variables, but cannot get this working. For example:<br>
> rewrite ^/index\.php?title=(.*)$ <a href="http://www.mysite.com/$1" target="_blank">http://www.mysite.com/$1</a> redirect;<br>
><br>
><br>
><br>
> Can anyone provide inside into how to correctly rewrite this type of<br>
> URL?<br>
><br>
><br>
> Thanks,<br>
><br>
><br>
> Andrew<br>
</div></div><div class="im HOEnZb">> _______________________________________________<br>
> nginx mailing list<br>
> <a href="mailto:nginx@nginx.org">nginx@nginx.org</a><br>
> <a href="http://mailman.nginx.org/mailman/listinfo/nginx" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a><br>
<br>
</div><span class="HOEnZb"><font color="#888888">--<br>
Steve Holdoway BSc(Hons) MIITP<br>
<a href="http://www.greengecko.co.nz" target="_blank">http://www.greengecko.co.nz</a><br>
Linkedin: <a href="http://www.linkedin.com/in/steveholdoway" target="_blank">http://www.linkedin.com/in/steveholdoway</a><br>
Skype: sholdowa<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
_______________________________________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a><br>
</div></div></blockquote></div><br></div>