RSS plugin 0.3.5 doesn't show up in the plugin's list after it is installed, so you can't configure anything.
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.
-
@a_5mith What if we're not using nginx?
-
@Tanner Then you'll be using Apache, in which case you'll use htaccess.
RewriteRule ^.rss(.*)$ /$1 [R=301]
needs to go below
Rewrite On
(might need to add this, google has amples of examples of how to do this, so I won't add it here) -
@a_5mith Definitely looking for a less hacky way of disabling RSS feeds. A button or checkbox would be ideal, but I'm curious if this could be written via a plugin or not.
-
-
@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. -
@zipang Thanks for reporting fixed in https://github.com/NodeBB/NodeBB/issues/6184
-
@baris Thanks !
You were really quick.
I have a slightly more complete PR here : https://github.com/NodeBB/NodeBB/pull/6185
because it happens on topics too.
Cheers,
Suggested Topics
-
Unsolved Rss poster?
General Discussion • • tkiblin