Don't take our word for it, see our SEO results for yourself. When selecting a SEO firm make sure to ask for examples of their rankings. We only employ ethical SEO practices (white hat SEO practices) to achieve the best results for our clients.
There will always be times when webmasters need to change a website’s urls, temporarily point one page to another or take down a page (permanently or for routine maintenance). When encountered with these types of situations, many webmasters are unsure of how to handle the task at hand. As these issues are fairly common, we have compiled a bit of information about common HTTP status codes and their uses for you to refer to as needed.
200 OK
We’ll start with the basics. This HTTP status code indicates that the request was successful. You want this for all of your site’s pages (the ones that you want indexed).
301 Moved Permanently
If at any time a URL of a page changes (maybe from a site redesign or a new page has been created to replace an old one), it is recommended to use a 301 Moved Permanently redirect. This code tells search engines that the page should be permanently redirected to the new page. This also helps to make sure users are sent to the correct page.
302 Found
This code should only be used for temporary redirects. The word ‘temporary’ is key. There are very few instances where this type of redirect should be used, but unfortunately it is the easiest to implement, so when trying to implement permanent redirects, we often see that a 302 Found was implemented instead. With this HTTP status code, Google will continue to crawl and index the original URL.
404 Not Found
A 404 Not Found status code means that the page does not exist. It could have existed in the past, but does not presently. In most instances, websites will issue the generic 404 page when the requested page cannot be found. However, these pages do not have your site’s navigation and can’t help the user find the information they were originally looking for; this why it is always recommended to create a custom 404 page.Â
503 Service Unavailable
Many of you have tired to go to a website and it is down; perhaps due to maintenance tasks taking place. The best thing to do in this situation is to return a 503 HTTP status code. This tells search engines that the site is only down temporarily. Similar to 404 pages, you should also create a custom message explaining when the site might be available again.
Have you ever wanted to make updates to your site from someone else’s computer? If you have, you probably have faced situations where the computer you use doesn’t have the programs you usually use to make these updates. One way to help you easily make updates is by using Cloud tools.
Moo Color Finder is a cloud tool that helps you find the colors being used in a site; this can come in very handy when creating new styles for your site and keeping it consistent. This tool is pretty simple to use, you can either go to the moo Color finder website and submit a url and it will return all of the color values in Hexadecimal and as a Photoshop Palette file, or you can add a snippet of code to the website you would like to retrieve the colors from and they will display on your page. For this you will need a page that uses a language such as PHP.
There is another great tool called Picnik that allows you to edit images on the cloud and could be very useful when tweaking images or adding new images to a blog post. This tool helps you crop, resize, zoom, rotate, sharpen among other features that provides the results in real time. After all the changes are made to the picture, all you need to do is save it.
Another tool that will be very useful when testing code in PHP, .Net and Javascript is called Coderun. This cloud tool allows you to create projects either from scratch, a template provided by the service or uploading your own files and testing it’s functionality. You can test changes you would like to make to your website without having to push it live or using a development server before pushing it to your live site. Â
Google docs also provides great tools you can use in the cloud. These include creating a word document, a spreadsheet or even drawing. There is also a tool called Forms, which allows you to create HTML forms that can be used as a template when adding a form to your site.
The great thing about these tools is that you can access them from anywhere that has an internet connection and it can become a real time saver, since it allows you to use their services without the need of setting up any software in the computer you are currently using. They can help you improve your site by adding information, as well as styles and a means to test code which can help develop your site and give you flexibility allowing you to progress your social presence.
Best SEO practice dictates that duplicate content, the same content found on multiple pages of one domain, is widely frowned upon. Most of the time, duplicate content is unintentional, either due to a lack of knowledge of its destructive consequences or just out of blatant disregard.
That being said, there are times when you do need duplicate content on your website. Consider an ecommerce site, particularly a product catalog, for example.
In a product catalog, it is not uncommon for the same product to be associated with multiple categories. For this very reason you could possibly have the same content on multiple URLS…
… which will all show the product details for one specific product. Now ideally we want search engines to only index one of those pages and ignore the other two. Fortunately, Google, Bing and a few other search engines, allow us to circumvent this problem rather easily by using the canonical link element. The canonical link element, which is put in the HEAD section of an HTML document, tells search engines the preferred location for a particular URL. So in order for the search engines to ignore two of the pages from our example above, and only pay attention to the page we want indexed, the following line can be added to both pages we do not want indexed:
[/source]
Now when the search engines visit the pages with that element, they will only consider its canonical location in their indexes. It should be noted however, that you should still avoid duplicate content at all costs, but there are some times when your application truly needs it, and for this, the canonical link element is perfect.