Reputation: 6119
I want to redirect http://example.com/balcony-covers/
to
http://example.com/balcony-screens/
permanently. How can I do this in nginx.
Upvotes: 0
Views: 52
Reputation: 134
Use your nginx.conf file.
Put
location /balcony-covers/ {
return 301 $scheme://$host/balcony-screens/;
}
in your server
block
Upvotes: 2