Advertisement
Guest User

Untitled

a guest
Feb 15th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. # temp redirect all wordpress feeds to feedburner
  2. <IfModule mod_rewrite.c>
  3. RewriteEngine on
  4. RewriteCond %{REQUEST_URI} ^/?(feed.*|comments.*) [NC]
  5. RewriteCond %{HTTP_USER_AGENT} !^.*(FeedBurner|FeedValidator) [NC]
  6. RewriteRule ^feed/?.*$ http://feeds.feedburner.com/MatthewWoodward [L,NC,R=302]
  7. RewriteRule ^comments/?.*$ http://feeds.feedburner.com/MatthewWoodward [L,NC,R=302]
  8. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement