Hi there, I have about 80,000 permalinks, and the current UI at /admin/customize/permalinks
only shows about ~100 of them. To be useful it would need an option to sort by the URL column and/or search for an exact value (i.e. node/70
, which currently shows node/70899
through node/70999
).
1 Like
You can do that with Data Explorer and a simple SQL query.
SELECT *
FROM permalinks
WHERE url LIKE '%node/70%'
3 Likes