Mobile app version of vmapp.org
Login or Join
Martha676

: 301 Redirects for Property Listing Website So, I am working on a site which has property listings, after some of the properties are expired its giving 404 errors. From what I understand, good

@Martha676

Posted in: #301Redirect #Redirects

So, I am working on a site which has property listings, after some of the properties are expired its giving 404 errors. From what I understand, good way to handle these expired pages is to 301 redirect them to their nearest region pages.

Now the main confusion is, what if a property comes up again for any reason its not sold or rented out, but that property url is already 301 redirected to other page. What would be the best way here? Because removing 301 on this page will take manual effort as well it might take some time for google to re-index that page again.

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Martha676

3 Comments

Sorted by latest first Latest Oldest Best

 

@Margaret670

You should not use 301 redirect in your situation. 301 Redirect helpful when you moved same content to other permalink. I never recommend to use 301 to display relative product or property, instead you can write that, this property is sold out or something else, which gives better experience in my eyes. Checkout amazon website, they use same content, they just change option from available to sold out when they have no product, so you don't need use noindex tag either.

301 redirect is equal to 1 webpage with 1 link, both pass same pagerank, as far I understand. So better to provide useful information to user. Just think yourself, if someone redirect you to some other webpage which you have not requested, do you like that experience? No, but what if you see the page that says product is not available at this time, so you can checkout some alternative here or something like that, so that is good user experience.

If the product/property is expired, then matt cutts recommended to use unavailable_after tag. .

10% popularity Vote Up Vote Down


 

@Shanna517

The best way is to create a custom 404 page where you can display: "Unfortunately, there are no ads for this property right now, below is a listing of other properties in your area that you can visit."

10% popularity Vote Up Vote Down


 

@Murray432

Neither 404 errors or 301 redirects seem preferable in this situation. The page should still return a 200 status code, but inform the user that the property listing has expired. Then provide a manual link for finding properties nearby. You should also change the meta information to noindex so the search engine knows the page is finished. If the property goes back up as a listing remove the noindex so the search engine knows to re-index the page.

Why is 404 bad?

The 404 error is bad because you are providing the end-user with a negative experience making your site appear broken.

Why is 301 bad?

In this case it seems that you're forcing the user into an area that they didn't anticipate. It's also not the same listing, so you're telling the search engine that your content moved, but in reality it didn't. It just went away. Also it creates the negative effect you stated that occurs when a property goes back up for listing.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme