Jump to content

Google ergonomics


unistake

Recommended Posts

OK, when I enter the raw web page data into the browser it does not redirect to /demo.

 

I have heard that search engines don't like redirect pages, I think I am best leaving it as is.

 

The url just looks messy on google. I thought there may be a way to fool the search engines to just see the made up directories.

Link to comment
Share on other sites

I have heard that search engines don't like redirect pages

No, that is not the case. A redirect is done for a reason. Header codes are used to distinguish the type of redirect. A 301 status means that the URL has moved permanantly i.e redirect http://www.xyz.com/oldpage.html to http://www.xyz.com/newpage.html

A search engine will thank you for this information.

 

What a search engine does not like is duplicate pages. So, if one page on your website is accessible via 2 urls i.e

example.com/project-details.php?p=demo

example.com/demo

You will end up with a penalty and your pages will end up in the Google sandbox. Therefore you should use your .htaccess file to 301 redirect your urls. Do not worry what the links are in Googles' result pages. As long as they properly redirect, this will get updated over time.

Link to comment
Share on other sites

another possible solution would be to use mod_rewrite and rewrite the example.com/demo to example.com/project-details.php?p=demo so then you dont have to maintain a redirect page and google will index it as example.com/demo.

The url should be mod rewritten & contain a 301 redirect. There is no need for any redirect page as the redirect is done via a .htaccess.

A redirect must be used if there are already inbound links using the old URL otherwise duplicate content will be picked up.

 

Although Google still doesn't like the redirect

What do you mean by this? Google will understand the status codes you provide. 301 Moved permanantly, 404 does not exist, etc

Link to comment
Share on other sites

Although Google still doesn't like the redirect

What do you mean by this? Google will understand the status codes you provide. 301 Moved permanantly, 404 does not exist, etc

 

In terms of SEO, Google marks you down (ever so slightly) for redirects.

Link to comment
Share on other sites

In terms of SEO, Google marks you down (ever so slightly) for redirects.

I've never seen this. Have you any info / links? I know there are issues if you supply too many redirects in one go as in a 404 followed by a 200 then a 301, but this is down to bad design.

If you are redesigning a website the URLs may be different in a new version so you must ensure that you 301 redirect all your old URLs that are indexed in Google to your new pages. Also if pages don't exist any more a 404 ErrorDocument should be defined. You can also submit old URLs that no longer exist to Google so they can be de-indexed.

Link to comment
Share on other sites

I don't mean pages that have been moved, the OP wasn't asking about that. It looks like unistake's got some kind of vanity URL system in place. I don't have information at hand, but during the SEO project we did at work we created sitemaps that were validated by Google. URLs that redirected to another URL with duplicate content were reported as warnings, that should be corrected. Obviously a negative in Google's eyes.. I'll try to dig out the exact errors later.

Link to comment
Share on other sites

URLs that redirected to another URL with duplicate content were reported as warnings

Yes, they will be. URLs that you intend to redirect should not be submitted in a Google sitemap. Only your final target URLs should be. If the original URL is indexed and you apply a 301, Google should pick this up when it spiders the site from it's current index. There will be no penalty as all you are stating is that you have changed the URL from x to y, x is redundant.

Link to comment
Share on other sites

Yeah. Unfortunately though the site has literally hundreds of thousands of pages rendered from a variety of sources, so the first draft of the application that generates the sitemap wasn't perfect. My point from this though is when Google will crawl the site normally, and finds a page that redirects, it'll still mark it down for having that unnecessary redirect. Using mod_rewrite to rewrite the URL will improve SEO (ever so slightly) over redirecting the user.

Link to comment
Share on other sites

My point from this though is when Google will crawl the site normally, and finds a page that redirects, it'll still mark it down for having that unnecessary redirect.

Of course, but again this is down to bad design. A website should not contain internal links to old pages that redirect. All internal links on a website should point to final target URLs that return a 200 status.

 

This is sometimes hard to implement on existing websites containing lots of pages, but you should have a central set of functions that control all mod rewritten links on your site. Therefore if you change a link it will be changed across the board and no old URLs will be left. You can then add the 301 redirect to your htaccess file to keep any current inbound links alive.

Link to comment
Share on other sites

I see what you're saying, but that's not what the OP is requesting. unistake wants to have the path "/demo" displayed within the SERP, not "/project-details.php?p=demo". A 301 redirect will correctly, without penalty lead Google to the long path, but it'll use that URL within the SERP. A 301 redirect from the long path to "/demo" will result in a redirect to a URL that is redirected again.. a loop.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.