You have the syntax wrong. There is no "redirect" in nginx. You use the rewrite directive. Here is how to redirect a URL in nginx using your example:
rewrite ^/user$ http://yourwebsite.com/members;
You have the syntax wrong. There is no "redirect" in nginx. You use the [B]rewrite[/B] directive. Here is how to redirect a URL in nginx using your example:
[code]rewrite ^/user$ http://yourwebsite.com/members;[/code]
robertman11
Are you sure you want to delete this post?