Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was asked to make a website for a restaurant that recently changed owners. They wanted a new URL. The owner of the old site enacted a redirect to the new site.

Old site: http://www.refugelounge.com

New site: http://www.therefugeyc.com

I don't know a lot about redirects but I have a sneaking suspicion that whatever it is going on here is hurting the new site's pagerank and traffic. The old URL comes up first in Google and shows up as an exact clone of the new site. And when visiting the old site, the URL remains static no matter what page is visited.

What's going on here? Thanks.

share|improve this question

1 Answer

up vote 4 down vote accepted

Yep, that's bad.

They use frames (frameset + frame). Despite being obsolete ("must not be used by authors"), frames are bad for usability (it's not possible for users to link to a specific page).

They should use a HTTP 301 redirect.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.