I created my own custom feed and use a custom URL with the format:
/%category%/%postname%/
but each time I try to access the post feeds via domain.tld/category/post-title/?feed=custom_feed
it just redirects to domain.tld/category/post-title/.
How do I access my feeds?
Note that the htaccess file contains (nothing different there):
# 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
Even using the default permalink settings doesn't work
Thanks for the help!
Regards,
kazuo
[No bumping, thank you.]