See <a href="http://wiki.codemongers.com/NginxHttpCoreModule#var_args">http://wiki.codemongers.com/NginxHttpCoreModule#var_args</a> or the original docs <a href="http://sysoev.ru/nginx/docs/http/ngx_http_core_module.html">http://sysoev.ru/nginx/docs/http/ngx_http_core_module.html</a> (not sure if there is an anchor) which often autotranslate fairly readably if something is missing or out of date in the wiki.<br>
<br><div class="gmail_quote">On Tue, Feb 17, 2009 at 11:20 AM, Igor Sysoev <span dir="ltr">&lt;<a href="mailto:is@rambler-co.ru">is@rambler-co.ru</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="Ih2E3d">On Tue, Feb 17, 2009 at 11:59:17AM -0700, Paul Greenwood wrote:<br>
<br>
&gt; I&#39;m sorry I am new to nginx but what does value $args hold and where does<br>
&gt; the value come from?<br>
<br>
</div>$args is the same as $query_string.<br>
<div><div></div><div class="Wj3C7c"><br>
&gt; On Mon, Feb 16, 2009 at 1:50 AM, Igor Sysoev &lt;<a href="mailto:is@rambler-co.ru">is@rambler-co.ru</a>&gt; wrote:<br>
&gt;<br>
&gt; &gt; On Sun, Feb 15, 2009 at 01:52:19PM -0700, Paul Greenwood wrote:<br>
&gt; &gt;<br>
&gt; &gt; &gt; How would you use regx in nginx for this:<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; RewriteCond %{QUERY_STRING} ^$ [OR] %{REQUEST_URI} ^/Special:Search<br>
&gt; &gt; &gt; RewriteRule ^/(.*)$ /index.php?title=$1 [L,QSA,NE]<br>
&gt; &gt; &gt;<br>
&gt; &gt; &gt; I&#39;m not sure to how to do this?<br>
&gt; &gt;<br>
&gt; &gt; &nbsp; &nbsp;location / {<br>
&gt; &gt; &nbsp; &nbsp; &nbsp; if ($args = &quot;&quot;) {<br>
&gt; &gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; rewrite &nbsp;^ &nbsp;/index.php?title=$request_uri? &nbsp; last;<br>
&gt; &gt; &nbsp; &nbsp; &nbsp; }<br>
&gt; &gt; &nbsp; }<br>
&gt; &gt;<br>
&gt; &gt; &nbsp; location /Special:Search {<br>
&gt; &gt; &nbsp; &nbsp; &nbsp; rewrite &nbsp;^ &nbsp;/index.php?title=$request_uri?;<br>
&gt; &gt; &nbsp; }<br>
<br>
<br>
--<br>
Igor Sysoev<br>
<a href="http://sysoev.ru/en/" target="_blank">http://sysoev.ru/en/</a><br>
<br>
</div></div></blockquote></div><br>