My category RSS feeds are redirecting to my main RSS feed
-
Either that, or they just show the blog page, rendered in the template and not the RSS feed. Here’s what’s going on:
Main site:
https://blog.gethope.nethttps://blog.gethope.net/feed
– This is my main feed, works greatI have a category called “Stewardship”, so that category feed should be:
https://blog.gethope.net/stewardship/feed
– This just brings me to the fully rendered category archive page for Stewardship. Not an RSS feedI also tried (which I figured wouldn’t work, but just for grins):
https://blog.gethope.net/feed?cat=stewardship
– This redirects to my main feedI also tried (which, according to the docs, SHOULD work):
https://blog.gethope.net/feed?cat=801 (the ID of the “Stewardship” category)
– This just redirects to my main blog pageI have a feeling it’s something to do with my .htaccess, but I’m not sure what. Here’s what’s in there (which I thought was the default WordPress stuff)
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
I AM using a custom permalink structure. That structure is:
/%year%/%postname%– but I didn’t think that would affect the category. So I’m not sure which one (either the permalinks or the .htaccess) is messing up the category feed
- The topic ‘My category RSS feeds are redirecting to my main RSS feed’ is closed to new replies.