Redirect RSS feeds to new URL
-
I recently moved my website from https://www.rebeccakdesigns.com/blog to https://www.acreativenomad.com/blog. This was through a website migration through my hosting company. They are saying they can’t fixed the RSS redirection.
I’m wondering how to do it myself. I want my old subscribers to still be getting my feeds.
I had a look in the ht.access file and the code is below but that doesn’t seem to be working.
RewriteEngine on
RewriteOptions inherit
RewriteCond %{HTTP_HOST} ^acreativenomad\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.acreativenomad\.com$
RewriteRule ^/?$ “http\:\/\/acreativenomad\.com\/blog” [R=301,L]RewriteCond %{HTTP_HOST} ^.*$
RewriteRule ^www\.rebeccakdesigns\.com\/blog\/feed$ “http\:\/\/www\.acreativenomad\.com\/blog\/feed” [R=301,L]
- The topic ‘Redirect RSS feeds to new URL’ is closed to new replies.