I've been trying to .htaccess redirect a specific URL in WordPress with no luck. Here's what I开发者_Python百科'm trying to accomplish:
/feed and /feed/ should redirect to FeedBurner
BUT any feed URL that has /feed/?... should NOT redirect
Everything I've tried redirects EVERYTHING with /feed (including /feed/?) in it to FeedBurner.
Any ideas?
RewriteRule ^feed/?$ http://path/to/feedburner
Should work. Can you show what you've tried?
精彩评论