In my site that just went live, I'm trying to figure out how to redirect two feeds.
My old URL was: http://www.voicemarketingradio.com/vmr/rss.xml I want to redirect that to the default URL of /feed.
I also want to redirect /vmr/podcast.xml to /vmr/feed/podcasts/
So, I started looking into how to redirect using nginx statements, but I'm a bit lost. Things I've tried haven't worked thus far.
All of my base config files look like this, I'm hoping to just add a specific configuration for this site here:
server {
server_name www.domain.com;
root /usr/share/nginx/html/html/htdocs;
## This should be in your http block and if it is, it's not needed here.
index index.php;
include global/common.conf;
include global/wordpress.conf;
include global/multisite.conf;
}
Any suggestions?