Yes there is:<br><a href="http://wiki.nginx.org/NginxHttpRewriteModule#rewrite">http://wiki.nginx.org/NginxHttpRewriteModule#rewrite</a><br><br>Main page:<br><a href="http://wiki.nginx.org/NginxModules">http://wiki.nginx.org/NginxModules</a><br>

<br>Ray<br><br><div class="gmail_quote">On Tue, Aug 4, 2009 at 7:22 AM, Edward Stow <span dir="ltr">&lt;<a href="mailto:ed.stow@gmail.com">ed.stow@gmail.com</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;">

2009/8/3 Igor Sysoev &lt;<a href="mailto:is@rambler-co.ru">is@rambler-co.ru</a>&gt;:<br>
<div class="im"><br>
&gt;     root   /srv/www/abc.tld/html;<br>
&gt;<br>
&gt;     location = / {<br>
&gt;         index  buy.html;<br>
&gt;         ssi    on;<br>
&gt;     }<br>
&gt;<br>
&gt;     location = /buy.html {<br>
&gt;         ssi    on;<br>
&gt;     }<br>
&gt;<br>
&gt;     location / {<br>
&gt;         rewrite  ^ <a href="http://abc.tld/$request_uri" target="_blank">http://abc.tld/$request_uri</a>?;<br>
&gt;     }<br>
&gt;<br>
</div>Thanks,  The / needed to be removed.  Otherwise you end up with double slashes.<br>
<div class="im"><br>
    location / {<br>
         rewrite  ^ <a href="http://abc.tld" target="_blank">http://abc.tld</a>$request_uri?;<br>
     }<br>
<br>
</div>What does the question mark ? do.<br>
<br>
Is there a page that describes all the special variables in nginx.<br>
<br>
<br>
<br>
--<br>
<font color="#888888"><br>
Edward Stow<br>
<br>
</font></blockquote></div><br>