Disable all RSS feeds
-
How does one disable all RSS feeds? Can this be a possible future feature?
-
@Tanner You could probably do this with Nginx and creating a rewrite for anything that contains .rss, remove it and replace it with nothing, something like...
rewrite ^.rss(.*)$ $1 last;
This should/might (I've not tested it) automatically redirect back to the topic, bit hacky, but could works.
-
-
-
@psychobunny Hi there,
As of nodebb v1.7.2, we have a checkbox to disable RSS feeds,
but the link for RSS feeds is still generated in the page head :<link rel="alternate" type="application/rss+xml" href="http://localhost:4567/category/2.rss?uid=3&token=305e32c5-9963-4bab-a4c1-fcdfa9c6c980" />
And following this link leads to a 404.
Copyright © 2024 NodeBB | Contributors