Posts Tagged ‘SEO’

News round-up: March 2012

Saturday 24 March 2012

Facebook has been in the news a lot recently. The Occupy London group followed the lead of Occupy Wall Street to set up encampments to protest about the failings of capitalist Britain. After the group lost an appeal against an injunction barring them from continuing their protest, bailiffs representing the City of London Police moved in to remove the tents on 28 February.

Meanwhile an allied movement, UK Uncut, is particularly incensed at instances of corporate tax avoidance. A favourite tax dodge is the “double Irish” arrangement (setting up two Irish companies and funnelling profits through one to the other) used by several US-based IT and web companies to avoid paying tax on most of the profits they’ve generated worldwide. Google and Microsoft are two of the companies known to be doing a “double Irish”. So is Facebook.

The thing is, Facebook is precisely what the protestors have been using to organise and publicise themselves. So you have the delicious irony of one of these big tax avoiders providing the means for their opponents to highlight their greed. (Don’t you just love the Web?)

The company has also been attracting attention over the Facebook Credits system, which developers of games for Facebook are required to use if they wish to incorporate a virtual currency into their game. This ban on other virtual currency providers is alleged to be against America’s anti-trust laws.

According to Hitwise, Facebook now accounts for one in six of all Internet page views in the UK, and one in five of all page views in the US market. The behemoth announced its IPO in early February, and is expected to be worth in the region of US$ 100bn. In the run-up to its IPO, all this negative attention is probably the last thing Facebook wants.

Google continue to change their algorithm more often than most people update their blogs. (Ahem.) Indeed, they changed it more than 40 times in a 29-day month. There are too many changes to list here but you can find more details from Google’s official search blog.

ClickBank has started a new weekly podcast service which they’re rather grandly calling ClickBank Insider Radio. It’s focused on making money online with ClickBank rather than general affiliate marketing. The podcast series is new but the first episode consists of more than half an hour of material most of us have heard before. Is it a wasted opportunity or will you become an avid listener of ClickBank Insider Radio?
You can listen to the first episode here

Domain forwarding

Saturday 8 August 2009

Many website owners wisely buy related domain names at the same time as buying their chosen domain – after all, you don’t want your competitors to be able to occupy your space and benefit from misspellings and confusion between .com, .net, .org, .co.uk, etcetera.

Of course, you’ll be one of those wise website owners. But having bought the secondary domain names, you’ll want to make them work for you rather than lying idle. So the question arises: how can you set up domain forwarding on them so that your primary domain gets maximum benefit in the search engines?

Make sure you have permanent (Code 301) redirects

There are several ways of redirecting traffic, but the key point is to make sure that the redirect is handled as a permanent redirect (HTTP status code 301) rather than a temporary one (HTTP status code 302). Otherwise search engines may well penalise you for duplicate content – or at the very least fail to pass on link popularity from your secondary domain to your primary one.

Here’s a quick look at the various ways of redirecting traffic (from a *nix/Apache perspective – Windows servers have their own set of instructions):

Entry in your httpd.conf file

This is probably the neatest way of redirecting as it requires the server to carry out the instruction once only, rather than every time a page request is made. Unfortunately users of shared hosting are unlikely to have access to system files like httpd.conf, but your hosting provider may make the change for you if you ask nicely.

Entry in your .htaccess file

This is the second best option, and is probably good enough unless your secondary domain is attracting heavy traffic. You should be able to find the .htaccess file in your web root directory (often called “www” or “public_html”) – if not, make one and set the permissions to 644 (owner gets read-write permission, everyone else gets read-only). Then add this code:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^([^.:]+\.)*secondarydomain\.co\.uk\.?(:[0-9]*)?$ [NC]
RewriteRule ^(.*)$ http://www.primarydomain.com/$1 [R=301,L]

Any URL at the secondary domain (eg www.secondarydomain.co.uk/mygreatpage.htm) will then be automatically redirected to the primary domain (www.primarydomain.com/mygreatpage.htm).

You can also do individual page redirects if you need to, but that’s a rather more labour-intensive process.

Registrar-provided URL forwarding

Many domain registrars offer you the facility to forward traffic from one domain to another. Unfortunately, they usually use a temporary redirect (Code 302) to do this, so you may dilute your link popularity.

Domain parking

You can get your secondary domain “parked” on top of your primary domain so that when people request www.secondarydomain.co.uk/mygreatpage.htm, they’re actually shown the content from www.primarydomain.com/mygreatpage.htm – although the URL in their address bar is still on the secondary domain. This can lead to search engines listing both pages for the same content (and has been exploited by spammers for that reason), so it’s not a great solution.

JavaScript meta-refresh redirects

You can include a JavaScript snippet in your page header to redirect to a given page within a specified number of seconds. This can be time-consuming to set up if you’re dealing with a lot of pages, of course. It’s also frowned upon by the search engines because people have abused it by creating optimised content for one topic, then forwarding to a page flogging blue diamond-shaped pills or such like.

Checking that it’s all working

Whichever method you choose, you’ll need to check that it’s working properly and that you’re getting Code 301 redirects. There are several server header checking tools around – just do a search and you should find one that works for you. Rex Swain’s HTTP Viewer works well.