Wordpress: how to redirect channel url to another?

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

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

OBS: I am using a Powerpress plugin to create a feed.

+3


source to share


1 answer


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



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

      

+2


source







All Articles