Ramon K.
Ramon K.

Reputation: 3502

Wordpress: How to redirect feed URL to another one?

I have a blog built with Wordpress, where I host a podcast. iTunes is currently reading the RSS from URL "A" (http://ramonkayo.com/categoria/hashcast/feed), but I want it to read from URL "B" (http://ramonkayo.com/feed/podcast).

How can I permanently redirect from A to B in Wordpress?

OBS: I use the Powerpress plugin to generate the feed.

Upvotes: 3

Views: 2152

Answers (1)

anubhava
anubhava

Reputation: 785156

Place this rule as your very first rule in WP .htaccess:

RewriteRule ^categoria/hashcast/feed/?$ /feed/podcast [L,NC,R=301]

Upvotes: 2

Related Questions