Vanilla 1.1.8 is a product of Lussumo. More Information: Documentation, Community Support.
It is actually much simpler...
if ($http_user_agent !~ FeedBurner) {
rewrite ^/comment/feed/ http://feeds.feedburner.com/your-comment-feed last;
rewrite ^/feed/ http://feeds.feedburner.com/your-feed last;
}
if (!-e $request_filename) {
rewrite ^.*$ /index.php last;
}
Just pass everything to /index.php, as WordPress handles mapping the URI to posts internally.
rewrite ^/comment/feed/ http://feeds.feedburner.com/your-comment-feed last;
rewrite ^/feed/ http://feeds.feedburner.com/your-feed last;
rewrite ^/comment/feed/?$ http://feeds.feedburner.com/your-comment-feed last;
rewrite ^/feed/?$ http://feeds.feedburner.com/your-feed last;
I know it’s been a while, but how would I use this concept to enable configuration level redirecting to feedburner for any number of domains being served through the virtual host container?
TIA!
1 to 7 of 7