Do internal links need to be updated after changing the url?

Nishida

Junior Member
Joined
Nov 3, 2019
Messages
144
Reaction score
16
I recently had to change the url of some of the pages, and redirected the old url to the new url, but a lot of internal links have been created with the old url, do I need to change the url of the internal links as well?
 
You don't have to if they are properly redirected. I have even seen people using link shorteners for internal links
 
Yes, I would update them. 301s don't pass all the juice.

Use relative format for internal links so you don't have to do this in the future.

For example:
absolute: https://www.domain.com/inner-page/
relative: /inner-page/

Code:
<a href="/inner-page/">anchor text</a>
 
NO, you don't have to do that, just check the status of all the links once. so if you see any impact you can change.
 
Back
Top