Should I change or redirect this URL?
-
Happy Friday everyone!
I just noticed that one of our Attorney Profile's url's is wrong. We used to have someone named "Dana Fortugno" as our Family Law attorney, but when he left, (over two years ago) we hired "Scott Finelli." The person who setup the site, just changed the information on the page not url. So instead of it saying "http://www.kempruge.com/scott-finelli-jd-llm/;" it says "http://www.kempruge.com/dana-fortugno-jd-llm/."
I'm considering taking all the content on the page with the wrong url, copying it to a new page with the correct URL and 301 redirecting (what would now be a blank page) to the new page with the correct URL.
Is this the best way to handle this?
Also, I don't believe there are many SEO concerns regarding the pages specifically. The profile pages aren't what we rank for in any of our Family Law related keywords. I am worried about having a completely blank page that just 301 redirects as looking bad to google, but not sure if it would?
As always, thank you for your time and any assistance you can provide.
- Ruben
-
Thanks for the help everyone. I kind of forgot if I'm redirecting it, then there's no problem with the old page. Thanks for the confirmation and the reminder! I appreciate it.
Have a great Memorial Day Weekend!
- Ruben
-
Dana your thought was right on. Also you don't even really need to worry about changing anything on the "old" page per se. You could just open up the .htaccess file on your server and redirect the old page to the new. For example:
Redirect old file path to new file path Redirect
/olddirectory/oldfile.html http://example.com/newdirectory/newfile.html
-
As the other guys said, just go ahead and do the redirect. It would at least help if someone is looking up the new attorney by name. To address the other part of your question, that page that you redirect will not be "blank" as you are telling Google with the 301 redirect that the page has moved.
-
As far as I know, Google recognizes 301 and follows them. So your new URL should rank automatically after some time in the SERPs. Also the link juice from the old URL will follow to the new one, if you choose a 301 redirect.
-
Yes, you should do what you described. You don't need to "delete" the content on the old page before moving it to the new one. Create the new page, redirect the old one.
Browse Questions
Explore more categories
-
Moz Tools
Chat with the community about the Moz tools.
-
SEO Tactics
Discuss the SEO process with fellow marketers
-
Community
Discuss industry events, jobs, and news!
-
Digital Marketing
Chat about tactics outside of SEO
-
Research & Trends
Dive into research and trends in the search industry.
-
Support
Connect on product support and feature requests.
Related Questions
-
SEO URLs: 1\. URLs in my language (Greek, Greeklish or English)? 2\. Αt the end it is good to put -> .html? What is the best way to get great ranking?
Hello all, I must put URLs in my language Greek, Greeklish or in English? And at the end of url it is good to put -> .html? For exampe www.test.com/test/test-test.html ? What is the best way to get great ranking? I am a new digital marketing manager and its my first time who works with a programmer who doesn't know. I need to know as soon as possible, because they want to be "on air" tomorrow! Thank you very much for your help! Regards, Marios
Technical SEO | | marioskal0 -
IP Change
Hello MOZ friends! We recently changed servers and subsequently had a change in IP. It's a better and faster server but have seen a significant drop in SERPS. Could this be a result of moving the site? Thanks!
Technical SEO | | wearehappymedia0 -
Change E-commerce Plataform... redirect urls... and images?
we are changing the e-commerce store and usually we do the redirection of all pages URLs... We usually don´t redirect css, js and images files .... Shouldn´t we redirect images as well?
Technical SEO | | SeoMartin10 -
Domain change recommendations
We recently migrated one of our websites to a new domain. Obviously we were expecting a decrease in traffic initially, but it has actually gone down by 70% week-over-week since we made the switch. We set up a 301 redirect from the old domain to the new domain, changed all internal links to the new domain and changed all inbound links that we owned to the new domain. Our research suggested the best way to approach a domain change was by keeping it simple and not making too many changes at once. So my questions are: 1. Are these the kinds of results we should expect initially after a domain change? And if not, 2. What are the steps we should take from here? Thanks!
Technical SEO | | gouldtr0 -
Is it worth it to change old URLs to lower case?
Hi Mozzers, My site has a ton of URLs with upper case letters, such as http://www.consumerbase.com/Lawyer-Mailing-Lists.html I know upper case URLs are bad, but I am wondering if it is worth it to change old, already created pages. Should I change these URLs to all lower case and 301 redirect the old URL to the new one, or will that temporarily de-index all of these pages? Thanks!
Technical SEO | | Travis-W0 -
Friendly URL
Can be Friendly URL installed on a custom made jobsite using mod rewrite / apache without any big interference to the system itself? Thank you.
Technical SEO | | tomaz770 -
How to make multiple url redirection using global.asax in IIS 6?
sir, I am working with IIS 6 site and i ant to redirect three different urls of a domain to one url, i.e, there are the different versions of the same url...so how can i create one? I have found a script on google. but it says redirecting one url. see it here: Sub Application_BeginRequest(ByVal sender as Object, ByVal e as EventArgs) Try Dim requestedDomain As String = HttpContext.Current.Request.Url.ToString().toLower() If InStr(requestedDomain, "http://yoursite.com") Then requestedDomain = requestedDomain.Replace("http://yoursite.com", "http://www.yoursite.com") Response.Clear() Response.Status = "301 Moved Permanently" Response.AddHeader("Location", requestedDomain) Response.End() End If Catch ex As Exception Response.Write("Error in Global.asax :" & ex.Message) End Try End Sub
Technical SEO | | VipinLouka780