What do you do about links to constantly moving pages?
-
One of the sites I work for is an employment site, they have a job database and the job pages tend to get links. The problem is that every time one of these jobs is filled, the job page goes away. What should I do to keep the value from these links?
-
I'd have to agree with this more! 301 to the category, that way once a new article/post/page/job etc appears under that article page, it will instantly have a boost from the PA/DA passed
-
Another thing you might want to consider is the use of rel="canonical". If you use the canonical tag on each job page to point back to the appropriate category it will help those category pages rank better rather than spreading the juice out among the individual job postings.
Matt Cutts recently did a video about this practice. He talks about product pages, but it should be the same in principle. You can find the video here: Canonical all product review pages as a single url.
You will still want to handle the missing pages with a 301 or 404, but there will be less concern about losing juice every time a job is filled. And as the video says, this is something to consider but it isn't a solution for everybody.
-
I would keep the pages but put a big red job taken accross the page, or if needed change the content completly.
this would give you more pages to play with when link sculpting also -
That's a good practice for small ads sites. As every of your jobs should be in a category, you should redirect the user to the category browsing page. Best page for the user and for googlebot too.
-
Hang on !
I would definitely avoid "301 back to the root page for jobs" or even a category page.
Over time, you are going to be creating a massive index of empty pages linking to a home page; that looks too spammy to me. If you want to be honest : 404 these pages- the job offer no longer exists, the page no longer exists --- you can personalise your 404 page to send the user to a relevant page
Honesty doesn't always pay though! To leverage the SEO benefits from these pages I would consider archiving the job listing, keeping the same url and just adding a message indicating that the post has been filled (an image will do)
That way, you’re keeping lots of unique content on your site and over time creating a log of pages.
To make these archived job pages useful to the user and to the search engines, dynamically add links to fresher job offers in the same category, company and town.
- Neil
PS Does this new SeoMoz feature now mean I'm now paying to give free advise ?
-
At some level they are user generated, but then they are put into the database and handled from there.
-
I was imagining that the vast majority of their pages would be user generated job listings. But I think I was incorrect.
-
It's actually surprising how many of the links are long term links, while they do sink off of front pages and whatnot, they are still there and even the mild value of them shouldn't go to waste.
-
Given the nature of Spencer's site, I wouldn't imagine that the incoming links to current job offers would have that long a life. So I wouldn't think that there'd be a mazzive pile up of incoming links getting 301'd.
-
Sure, I would 301 to .com/jobs/ or .com/[category]/ or whatever the main page is that will never go away. Depending on what you are doing, you may 301 to the root of your domain.
This really is a structural decision.
-
I definitely am not discounting your way of handling it... I think it's fantastic, especially because it's scalable. Where do you 301 the pages back to, the main category page?
-
Well I would hope that new data would be posted often so you would not have a bad ratio of old data to knew. Google is smart enough to know that some things date out such as products, events, job post, etc.
I have not noticed a penalty, but perhaps others can add comments to this.
-
Eventually, wouldn't a large ratio of your inbound links be pointed to pages that are 301'd to another page?
It just seems to me, that Google wouldn't think that is very 'natural', and perhaps would just feel that the majority of the content on the site is old/ outdated since most of the inbound links point to pages that don't exist anymore. (even if they are 301'd)
-
Yeah, I am starting to use this quite a bit with products moving off the site. No need to spill the juice
No because the 301 is dynamic. Not like adding to the .htaccess file. Also, make sure someone coding PHP does this as you need to make sure there are no white spaces before doing a header location or you will bomb the page.
Check your header to make sure you did the 301 correctly.
http://www.seoconsultants.com/tools/headers
Cheers
-
Hey Richard,
That's a useful script! Thanks!
Do you think in the case of running an employment site, those 301's would begin to rack-up frequently enough to get flagged?
[edit: I meant to add this below Richard Getz script]
-
Hey Spencer,
Is there a way you can dynamically pull the information (for the job) into the page.... so that once the job goes away, you can then change the informatino to be a new job?
The only catch to that, would be the URL structure, becuase obviously you would need to make the URL's generic, such as "/bay-county-seo-job" or something instead of mentioning the company.
On Distilled's recent conference call / webinar, Will discuess their project hiremarshall.com (I think that webinar would be of some help to you- and anyone else reading this).
Specifically, you could develop a model which keeps those pages live, so that the company uses that same page for all of their new job openings.
Donnie Cooper.
-
If these pages are database driven, you can check to see if the post is in the database, if not, then 301 back to the root page for jobs.
Run a PHP script that check the database TRUE = loads the page FALSE header redirect to root page (or whatever you want) and 301 the move.
if (!$_GET['post']) {
$location = "http://www.YourSite.com/jobs/";
header("HTTP/1.1 301 Moved Permanently");
header("Location: {$location}");
exit;Your developer will be able to actually write a valid script testing the page and either returning the job post or redirecting the page.
I hope that helps.
Got a burning SEO question?
Subscribe to Moz Pro to gain full access to Q&A, answer questions, and ask your own.
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
-
What should I do with all these 404 pages?
I have a website that Im currently working on that has been fairly dormant for a while and has just been given a face lift and brought back to life. I have some questions below about dealing with 404 pages. In Google WMT/search console there are reports of thousands of 404 pages going back some years. It says there are over 5k in total but I am only able to download 1k or so from WMT it seems. I ran a crawl test with Moz and the report it sent back only had a few hundred 404s in, why is that? Im not sure what to do with all the 404 pages also, I know that both Google and Moz recommend a mixture of leaving some as 404s and redirect others and Id like to know what the community here suggests. The 404s are a mix of the following: Blog posts and articles that have disappeared (some of these have good back-links too) Urls that look like they used to belong to users (the site used to have a forum) which where deleted when the forum was removed, some of them look like they were removed for spam reasons too eg /user/buy-cheap-meds-online and others like that Other urls like this /node/4455 (or some other random number) Im thinking I should permanently redirect the blog posts to the homepage or the blog but Im not sure what to do about all the others? Surely having so many 404s like this is hurting my crawl rate?
Technical SEO | | linklander0 -
#Page Jump link sharing
Hi I'm managing an in-house link building campaign in order to help in our key search term 'Location Holidays'. We were historically number 1 for this term until a recent re-design in May where our web design agency butchered our SEO. All of the main issued fixed, we're now fluctuating between 3rd & 4th on a daily basis. I'm putting together a social share comp to promote through the press in order to boost our backlink profile. We're nesting the competition within the body of the page we want to improve the rankings for. I will be including a #page jump link to quickly access it as it will be further down the page. My question is that if we get press to link to http://holidaycompany.com/destination/#comp will http://holidaycompany.com/destination/ receive the link juice or will http://holidaycompany.com/destination/#comp be looked upon as a whole new page? Thanks in advance!
Technical SEO | | MattHolidays0 -
Why are these internal pages not showing any internal links?
If you look at Author profile pages like this one, http://experts.allbusiness.com/author/denise-oberry (THE top contributor on the site with over 82 posts under her belt), or any Author profile page, they show zero internal links or Page Authority. The same goes for most posts for each author on the site. Author pages should show internal links from every post the author has on the site. And specific posts should also have internal links from categories, etc. Yet they show zero. The only posts that show internal links and PA are ones that were either syndicated to the root domain's homepage, or syndicated to Fox Small Business. ZERO internal links. Does anyone know why this is? The root domain does not act this way with Author pages and posts. And I see nothing blocking links or indexing via the robots.txt file or page level nofollow tags. A real head scratcher for this SEO nerd, that I'm sure someone here will have a really simple answer to.
Technical SEO | | MiguelSalcido0 -
Correct linking to the /index of a site and subfolders: what's the best practice? link to: domain.com/ or domain.com/index.html ?
Dear all, starting with my .htaccess file: RewriteEngine On
Technical SEO | | inlinear
RewriteCond %{HTTP_HOST} ^www.inlinear.com$ [NC]
RewriteRule ^(.*)$ http://inlinear.com/$1 [R=301,L] RewriteCond %{THE_REQUEST} ^./index.html
RewriteRule ^(.)index.html$ http://inlinear.com/ [R=301,L] 1. I redirect all URL-requests with www. to the non www-version...
2. all requests with "index.html" will be redirected to "domain.com/" My questions are: A) When linking from a page to my frontpage (home) the best practice is?: "http://domain.com/" the best and NOT: "http://domain.com/index.php" B) When linking to the index of a subfolder "http://domain.com/products/index.php" I should link also to: "http://domain.com/products/" and not put also the index.php..., right? C) When I define the canonical ULR, should I also define it just: "http://domain.com/products/" or in this case I should link to the definite file: "http://domain.com/products**/index.php**" Is A) B) the best practice? and C) ? Thanks for all replies! 🙂
Holger0 -
Can I reduce link count by no following links?
Hi, A large number of my pages contain over 100 links. This is due to a large drop down navigation which is on every page. To reduce my link count could I just no follow these navigation links or would I have to remove the navigation completely?
Technical SEO | | moesian0 -
Moving subdomain ? How to ?
Hi all. I've purchased a domain name two years ago with the idea to offer wide range of services. I've also created a sub-domain providing specific service for highly competitive keyword. Sadly plans went wrong and I didn't use the root domain name at all, just the sub-domain providing that service. There aren't much links to that sub-domain, but all are quality links, until recently I've managed to keep positions between 5 and 7 without any effort, but yesterday I saw that it's dropped to 9. The question is, before I start to build links and write articles to get back up my domain, is it worth to move that sub-domain to my original root domain. As I said, there aren't much links to that sub-domain, it only has pagerank1, also for the last year the original root domain was redirected (301) to the sub-domain to not loose traffic and I'm scared if I reverse this procedure and redirect my sub-domain to the root domain that Google will get confused. It's a tricky question I know 🙂
Technical SEO | | VasilTasev0 -
Linking out?
First of all, sorry this Q is all in one block, but iPads don't like this site or vc/vs. When using the SEOmoz on-site keyword optimizer tool, it suggests at least one link to be to an off-site page. Would it be considered a link exchange if we linked out to an niche SUPER Authority sit that had a link back to our website? It seems like a naturally good strategy, but I'm afraid google may not agree. If the answer is no, there are many similar sites that mention our company in ver good ways, awards, etc.., but with no links. I would think this is a no-brainer. Personally I would like to eventually harvest all this press coverage to benefit our site. Btw, I was grey before I learned about SEOmoz, just like the rest of our niche. Now I'm shooting to be Snow White! Hopefully it works out. 🙂 I also wrote two landing pages that I tried to SEO the right way. I would love to hear your feedback to know if they are truly effective and if they are actually white. I think they are, but don't know "all" the rules of being white http://jamproa.com/ideology/product-innovation.php http://jamproa.com/industrial-design/what-is.php Thanks!
Technical SEO | | dmac0