Nope. Well, it depends.
Drupal at its core, is built on the concept of nodes and each node has an ID. Nodes can be accessed via the URL, e.g., may work but may not always be the right solution. You can find the node URL when editing a node: hover over the âNew draftâ (edit) tab and you should see ââ.
When to use node IDs
Node IDs should be used when designing the structure of your site, for example, placing a block on a page should use a node ID.
Page visibility on block settings: use node numbers because you are building the infrastructure of your site; you want those blocks to stick to that content.
When to use an alias
Use an alias when sharing or displaying links to any content.
Linking to any content on your site or another Drupal site:Ěý
Links that visitors will interact with should always use an alias; this will keep the content accessible. Imagine that you use a screen reader and someone tells you, âhey, go to .â You wouldnât know what youâre getting yourself into. It would be more useful and considerate to reveal, âhey, go to ,â informing the visitor what content they will receive before they click.
To summarize, use node ID for creating the structure of your site, and alias for addressing content that visitors will interact with.
If accessibility doesnât pull your wagon, it will also improve Google search rankings as well.