Geek: Improve SEO on WordPress blog with HTACCESS

Even though this blog now mainly consists of drifting, motorsport, cars and other cool things, I still aim to keep my geek readers updated too! I’ve managed to source 2 different chunks of code to help any WordPress user along the way with (hopefully) improved SEO results to your blog. This post is talking entirely about that odd little file known as .htaccess, so pay attention, some real SEO advantages can come from this…

Firstly, I’ve now moved my blog from a .co.uk to a .com TLD, so I needed a htaccess mod to permanently move all requests from the old domain to the new domain. A two-liner from SEOblogr.com did it for me, and this is below

RewriteCond %{HTTP_HOST} ^(www\.)?old-domain\.co.uk
RewriteRule (.*) http://www.new-domain.com/$1 [R=301,L]

And the other part to my htaccess is the ability to remove query strings from the URL’s, and then again permanently redirect them to the blog post. A query string, by the way, is anything after the main request URI which isn’t already rewritten. ?query for example, and this code is here, taken from BrianCray.com

RewriteCond %{QUERY_STRING} !=""
RewriteCond %{QUERY_STRING} !^p=.*
RewriteCond %{REQUEST_URI} !^/wp-admin.*
RewriteRule ^(.*)$ /$1? [R=301,L]

And that’s basically it! Just put both these bits of code after the line

RewriteBase /

In your .htaccess file, and you’re good to go. I’m seeing good results already from this. /endgeek :)

Tagged , , , | Leave a comment

Posting to WordPress from an iPhone

So, I’ve sort of been given a first-gen Apple iPhone at work and whilst messing about with it’s various features & apps, I came across a WordPress app and thought I’d install it to see what it could offer me.

Within seconds it was done & the app asked me to enter some details about my blog… Surely not?! Well I entered my blog URL, admin username & password and hey-presto, details of my blog appered along with the ability to write new blog posts!

And here I am, sat, writing a post at past-midnigt to see if it works! Not sure how useful this will be to me in the future, but way too cool regardless! :)

Tagged , | 5 Comments

Dazecoop – new design, at last

Woop! Finally got the new design finishing & online. I’m not completely happy with it quite yet, but its certainly an improvement to the previous attempt at a theme. Its got some bugs to iron out yet, and (damnnit) it still isn’t quite “valid”, but I’m working on it!

In the meantime, check it out – some new pages, new features & stuff.

Report back here with thoughts, comments, improvements and so-forth :) enjoy!

Tagged , , | 8 Comments