Hello!  I have a question.<br><br>I&#39;m trying to set up Nginx to forward my old domain to my new domain.  <a href="http://waterfortheoppressed.com">waterfortheoppressed.com</a> =&gt; wfto.cc.   But I not only need it to forward it, I need the persons browser address to change to wfto.cc.  I&#39;ll provide the working Apache example here:<br>
<br>   RewriteEngine On<br>   RewriteCond %{HTTP_HOST} ^(<a href="http://waterfortheoppressed.com">waterfortheoppressed.com</a>) [NC]<br>   RewriteRule ^(.*)$ <a href="http://www.wfto.cc">http://www.wfto.cc</a>$1 [R=301,L]<br>
<br>   RewriteCond %{HTTP_HOST} ^(<a href="http://www.waterfortheoppressed.com">www.waterfortheoppressed.com</a>) [NC]<br>   RewriteRule ^(.*)$ <a href="http://www.wfto.cc">http://www.wfto.cc</a>$1 [R=301,L]<br><br>Thanks for any help you may have.<br>