# How to Change the Name of a Link: A Complete Guide Renaming a link sounds simple — and often it is — but the exact steps depend heavily on **where the link lives** and **what type of link you're working with**. A hyperlink in a Word document, a saved bookmark in your browser, a URL shortener alias, and a symlink on your desktop all involve completely different tools and workflows. Understanding the distinctions makes the whole process faster and less frustrating. ## What Does "Changing the Name of a Link" Actually Mean? Before diving into steps, it helps to clarify the terminology. When most people say they want to change a link's name, they usually mean one of three things: - **Changing the display text** — the clickable words that appear (also called anchor text), without touching the underlying URL - **Renaming a saved link or shortcut** — such as a browser bookmark, a desktop shortcut, or a favorited item in an app - **Changing a custom URL alias** — such as a branded short link created through a URL shortener service These are meaningfully different tasks. The URL itself (the actual web address) isn't typically what's being renamed — that's usually either fixed by the website owner or managed through a domain/hosting setup. ## Changing Anchor Text in Documents and Emails 🖊️ The most common scenario is editing the **visible text of a hyperlink** inside a document, email, or webpage. ### In Microsoft Word or Google Docs 1. Right-click the hyperlink 2. Select **Edit Hyperlink** (Word) or **Edit link** (Google Docs) 3. Change the text in the **"Text to display"** field 4. Click OK or Apply The underlying URL stays exactly the same — you're only editing what the reader sees. ### In HTML (Web Pages) In raw HTML, a link looks like this: ```html Click Here ``` The text between the ` ` and `` tags is the display name. Change **"Click Here"** to anything you want — it has no effect on where the link actually points. If you're using a CMS like WordPress, the same principle applies inside the block editor: highlight the linked text, update it, and the URL remains unchanged. ### In Outlook or Gmail Most email clients let you edit hyperlink display text directly. In **Outlook**, right-click the link and choose **Edit Hyperlink**. In **Gmail**, highlight the linked text, click the link icon in the toolbar, and update the display text field in the popup. ## Renaming a Saved Bookmark or Shortcut 🔖 Saved links — whether in a browser or on your desktop — are essentially named pointers to a URL. Renaming them only changes the label, not the destination. ### Browser Bookmarks | Browser | How to Rename a Bookmark | |---|---| | Chrome | Bookmark Manager → right-click → Edit | | Firefox | Bookmarks sidebar → right-click → Edit Bookmark | | Safari | Edit Bookmarks → double-click the name | | Edge | Favorites → right-click → Edit | In all cases, you'll find a **Name** field that's independent of the URL field. ### Desktop Shortcuts (Windows and macOS) On **Windows**, right-click the shortcut file and select **Rename**. This changes the label displayed on your desktop or in File Explorer. The `.url` file itself still points to the original address. On **macOS**, click once on the shortcut to select it, press **Return**, type the new name, and press Return again to confirm. ## Changing a Custom Short Link Alias If you've created a **branded or custom short link** through a service like Bitly, TinyURL, or a self-hosted shortener, renaming it typically means changing the **back-half alias** (the part after the slash in a short URL like `bit.ly/your-alias`). Most platforms allow this from your link dashboard, but there are important caveats: - **The old alias usually stops working** once you change it, unless the platform supports redirecting old aliases to the new one - **Some platforms only allow one-time alias edits** on free tiers - If the short link has already been shared or published widely, renaming it can break existing references The **front-half** of a short URL (the domain itself) is tied to your account or plan type and isn't typically changeable without upgrading or using a custom domain. ## Variables That Affect Your Approach The right method depends on several factors that vary from user to user: - **Where the link lives** — a Google Doc, an HTML file, a browser, a desktop, a URL shortener platform, or a mobile app each has its own interface - **What you have access to** — editing anchor text on a webpage you don't own isn't possible without CMS access or code-level permissions - **Whether the link has already been shared** — renaming a display label in a private document has zero downstream impact, but changing a published short link alias can break external references - **Technical skill level** — directly editing HTML gives the most control but requires comfort working in code or a text editor - **Platform or OS version** — menu options in browsers and desktop apps vary slightly across versions and operating systems ## When "Renaming" Isn't Possible Some situations make renaming a link more complex than expected: - **Live URLs on someone else's website** — you can't change the URL or its anchor text if you don't control the page - **Shared or embedded links in PDFs** — most PDF viewers don't let you edit hyperlink text without the original source file or a PDF editor with that capability - **System symlinks** (file system shortcuts on Linux/macOS) — renaming the symlink file itself is straightforward, but the target it points to is separate Understanding which part of the link you actually want to rename — and where that link exists — is what determines whether the process takes five seconds or requires a different tool entirely. Your specific setup is the piece that makes the difference. 🔍