this post was submitted on 22 Jun 2026
7 points (100.0% liked)
Lemmy
14617 readers
15 users here now
Everything about Lemmy; bugs, gripes, praises, and advocacy.
For discussion about the lemmy.ml instance, go to !meta@lemmy.ml.
founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I expected some special syntax like
post:id!community@domainOr
ap_id?post/15@xn--e1aghfa.xn--e1aqbccjfc.xn--p1acfHere
ap_idis the name of part of URI, which maps tohttps://lemmy.ml/post/ap_id
and performs all the magic, which lemmyverse.link does
Or
https://lemmy.ml/post/49064481?15@xn--e1aghfa.xn--e1aqbccjfc.xn--p1acfif developers will integrate it into lemmy itself
?=post/15@xn--e1aghfa.xn--e1aqbccjfc.xn--p1acf- any ap_id?[!community@xn--e1aghfa.xn--e1aqbccjfc.xn--p1acf](/c/community@xn--e1aghfa.xn--e1aqbccjfc.xn--p1acf)- any community?usernick@xn--e1aghfa.xn--e1aqbccjfc.xn--p1acf- any userbut the last two options are not necessary
I don't believe those exist, it would be cool though
in another software it's possible to use:
p?ap_id@server
c?conf@server
u?user@server
where this local links will be added to URI ending with trailing
/i.e. https://engine.tld/application/objtype/NNNNNID/
will be completed with
https://localserver.tld/applicationname/objtype/NNNNNID/p?ap_id@remoteserver.tld
https://localserver.tld/applicationname/objtype/NNNNNID/c?conf@remoteserver.tld
https://localserver.tld/applicationname/objtype/NNNNNID/u?user@remoteserver.tld
This way the local links will allow to setup redirects to any type of objects. (and without special syntax and special parsing)
and distinguish them with regular expressions at reverse proxy...