# Permalinks

You can rename the URL to your notes, using permalinks.

For example, you can turn this:

https://publish.obsidian.md/username/Company/About+us

Into this:

https://publish.obsidian.md/username/about

To create a permalink for a note, add the permalink property to your Properties.

---
permalink: about
---

If someone visits a note using the original URL, they'll be automatically redirected to the permalink.

# Redirect old notes

Renaming and removing notes is a natural part of maintaining a living vault. While Obsidian automatically updates links when you move a note within your local vault, other websites may still link to your old notes on your published Obsidian Publish site. You can redirect readers from one note to another.

Imagine you want to move a note from one folder to another:

  • Guides
    • Making friends.md (removed)
  • Tutorials
    • How to make friends.md (added)

After you move the note, Obsidian automatically updates all links within the vault. However, if you publish the change to your Publish site, any links to /Guides/Making+friends will result in a 404.

To redirect readers from /Guides/Making+friends to /Tutorials/How+to+make+friends, you need to add an alias in How to make friends.md, the note you want to redirect to.

---
alias: Guides/Making friends
---

# How to make friends

You can redirect multiple notes by adding an alias for each.

---
aliases: 
  - Guides/Making friends
  - Developing friendships
---

# How to make friends