Glossary plugin

Plugin Requests

Suggested Topics


  • 0 Votes
    6 Posts
    2k Views

    Curious, did you find a solution for this?

  • Redirection Plugin

    Plugin Requests
    0 Votes
    5 Posts
    2k Views

    If it really is just 100-150 old topics, then an nginx map makes even more sense.

    I can see it from your point of view, that it's easy for NodeBB to do, although I urge you to consider that nginx is very good at what it does, and so having nginx check for an old url to redirect is quite simple.

    For example, if the old forum had topics using this url: /t/<topic id>, then you could write a location block that only responded to that folder, and applied the map to redirect the user based on those topic IDs.

    In one example, we have this map config:

    map $request_uri $mapped_topic { ~^/showthread\.php\?(?<topicId>\d+).*$ $topicId; ~^/archive\/index\.php\/t-(?<topicId>\d+)\.html$ $topicId; default 0; }

    and in the map file itself, we maintain the hash to go from one topic to another.

  • 0 Votes
    2 Posts
    1k Views

    Does the newsletter have an RSS feed? That may be the easiest way...

  • 0 Votes
    11 Posts
    3k Views

    That's great! Thank you!

  • 0 Votes
    4 Posts
    2k Views

    No, nobody contacted us about it 😄