Redirect rss feed users
- by Jeremy Love
I made a redirect but when I subscribe to it, it doesnt get the feed from my new url it gets the one from my old url heres what I have.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteCond %(REQUEST_URI) ^/articles$ [NC]
RewriteRule ^(.*)$ htp://newsite.mysite.com/articles [R=301,L]
RewriteCond %(REQUEST_URI) /(.)
RewriteRule ^(.*)$ htp://newsite.mysite.com [R=302]
RewriteCond %{HTTP_HOST} ^www\.oldsite.mysite\.com$
RewriteRule ^(.*)$ http://newsite.mysite.com [R=301,L]
Redirect 301 / http://newsite.mysite.com/
</IfModule>
any help is greatly appreciated, also do to me having no points i had to rename 2 of the urls to htp instead of http