Please Note: This article is written for users of the following Microsoft Word versions: 2007, 2010, 2013, 2016, 2019, and 2021. If you are using an earlier version (Word 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Word, click here: Removing HTTP from URLs.
Written by Allen Wyatt (last updated November 18, 2025)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and 2021
Graham is a copyeditor and one of the (quite usual) tasks he faces is to remove http:// from URLs that start http://www. Graham finds this task easy if the URL is just text. However, if it is a hyperlink, he has to display the Edit Hyperlink dialog box, select http:// in the Text to Display field, delete it, and close the dialog box.
Fortunately, you don't have to always display the Edit Hyperlink dialog box to make your changes. Even if a hyperlink is active, you can find and replace information in what is displayed. For instance, doing a search for http://www and replacing it with www will work just fine, even for active hyperlinks. Word changes just the text that is displayed and not the underlying hyperlink itself.
If you have many, many hyperlinks to edit and this truncation of URLs is a common task, you may want to use a macro to handle this. You can develop a short macro that will step through each hyperlink in the document and remove the http:// portion. The following is an example:
Sub FixHyperlinks1()
Dim hyp As Hyperlink
Dim sLink As String
For Each hyp In ActiveDocument.Hyperlinks
sLink = hyp.Address
sLink = replace(sLink, "http://", "")
hyp.Address = sLink
Next hyp
End Sub
This approach is probably not as comprehensive as you want, however. It only affects active hyperlinks; it doesn't affect plain-text URLs in your document. If you want to use a more comprehensive approach, you need something that will get rid of all the hyperlinks (you probably don't need them in the document in the first place) and then get rid of the http:// portion. Here's one that will do just that:
Sub FixHyperlinks2()
'Remove hyperlinks
With ActiveDocument
While .Hyperlinks.Count > 0
.Hyperlinks(1).Delete
Wend
End With
'Remove http://
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "http://www"
.Replacement.Text = "www"
.Forward = True
.Wrap = wdFindContinue
End With
Selection.Find.Execute Replace:=wdReplaceAll
End Sub
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (13147) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, and 2021. You can find a version of this tip for the older menu interface of Word here: Removing HTTP from URLs.
Learning Made Easy! Quickly teach yourself how to format, publish, and share your content using Word 2021 or Microsoft 365. With Step by Step, you set the pace, building and practicing the skills you need, just when you need them! Check out Microsoft Word Step by Step today!
If you have a document that was produced in a country where decimal commas are used instead of decimal points, you may be ...
Discover MoreYou may have boilerplate text that you need to include in your document, and it would be detrimental to accidently change ...
Discover MoreWhen using Find and Replace, how Word handles the case of letters in replacements can be confusing. It needn't be, if you ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2025-11-18 11:27:46
peter roth
This looks a little fishy ...
Sub FixHyperlinks1()
Dim hyp As Hyperlink
Dim sLink As String
For Each hyp In ActiveDocument.Hyperlinks
sLink = hyp.Address
' i would expect the following line
' sLink = replace(strLink, "http://", "")
' ^^^^^^
' to be
sLink = replace(sLink, "http://", "")
hyp.Address = sLink
Next hyp
End Sub
2020-08-21 13:31:52
Peter Johnson
In Sub FixHyperlinks1() the string strLink has not been declared (but sLink has).
Surely the sixth line should read:
sLink = replace(sLink, "http://", "")
Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments