Thursday, 24 September 2009

Cornwall, Czech & New York Photography Show



Roaming far from the beaten track in the Czech Republic, for instance, provided him with the inspiration for Beneath Pravcicka Brana, one of a number of black and white compositions with eerie overtones taken, as he says, "when the early morning mist conjured up a glorious sombreness you could normally only wish for... Frank Ruhrmund's full article

Monday, 14 September 2009

Penzance Motif



This is a secret little motif that's found in Penzance.

Thursday, 3 September 2009

Umbelliferae or Apiaceae



From the Umbelliferae or Apiaceae family, this is one of 300 genera and more than 3,000 species; found just above the Men-an-Tol in West Penwith, Cornwall.

Friday, 28 August 2009

Redirect Using Friendly 301

The .htaccess file can seem daunting, especially when it comes to implementing 301 search engine friendly permanent redirects.

Not any longer.

Why implement them in the first place, well it's better to have your website indexed under one canonical name than two or even three.

How does this come about? In your root folder the homepage is normally labelled 'index.html, index.php &c, so what happens is this, when you click on the homepage link of your website instead of reading: www.mywebsite.com, you get: www.mywebsite.com/index.html; Google also sees this and actually indexes the two differently, even though they are exactly the same pages. This isn't so bad until your back-links start to get affected - there's nothing worse than having the /index.html page hogging more of the links than the .com only page.

But that's not all, it never would be with the web; what about sites having two TLDs (top level domain), for example: .co.uk & .com, you want the search engines to index both of these the same don't you? Likewise when someone links back to your site without the 'www', I presume you want these also to count under your one chosen TLD

Now I'm no programmer, but I have managed to implement the said 301 redirects using a really simple bit of code that you pop into your .htaccess file. I say simple, all three use 'regular expressions', but you don't really have to do the tutorial, just copy and paste.

But as with all changes to your root folder, do ensure you've saved the lot before you carry out any changes;-)

301 redirect .co.uk to .com


RewriteEngine On
RewriteCond %{HTTP_HOST} !^mywebsite\.co.uk$
RewriteRule (.*) http://mywebsite.com/$1 [R=301,L]

You only have to type in the 'RewriteEngine On' once.

301 redirect non www to www


RewriteCond %{HTTP_HOST} !^www\.
RewriteRule (.*) http://www.%{HTTP_HOST}/$1 [R=301,L]

301 redirect index.html to just the domain: www.mywebsite.com


RewriteCond %{THE_REQUEST} ^.*\/index\.html?
RewriteRule ^(.*)index\.html?$ http://www.mywebsite.com/$1 [R=301,L]

Remember to replace the 'mywebsite' with the name of your website.

End product, after implementing all three 301 permanent redirects, you've a website rendering under one roof that has nothing to confuse the search engine spiders or your potential customers with.

Tuesday, 25 August 2009

Bing 'o' with a Difference



The new face of Bing 'o' (couldn't resist the pun) in the South West.

Friday, 21 August 2009

Bing Frustrating

To ensure in Bing, that one of my UK based .com sites gets indexed as a UK site I added the following Meta Data:

meta http-equiv="content-language" content="en-gb"

Excellent I thought, not so.

On checking keyword ranking in Bing SERP I find that for some pages the site ranks highly in 'show all', and not at all in 'Only from the United Kingdom', and other pages vice versa.

This problem has been on going with MSN for some time now and really it's about time they sorted it out, just like Google has in its Webmaster Tools.

Thursday, 20 August 2009

PageRank of 6 & Never Indexed

How can a site: http://tinyurl.com/nywamr, have a PageRank of 6, yet never been indexed by Google.

I've carried out some checks, meaning does the page have this code:

/* insert a cloaking script here to detect whether the visitor is
Googlebot */
if (Googlebot) {
echo '‘;
exit();
}
else {
echo “

My PR10 page!

“;
}
?>

No, it doesn't. So how can a site generate such a wonderful PageRank yet never have had the pleasure of Google's bots? - Answers please.