Posts Tagged ‘ SEO ’
Installing myRewrite2 on windows XP Pro
Thursday, May 7th, 2009Quick guide with video
Tags: myRewrite, patch, SEO, update
Posted in
Help, R & D |
No Comments »
Friendly URLs in Wordpress on IIS
Wednesday, April 15th, 2009I’ll assume that your reading this because your self hosting a wordpress blog in IIS6 on a Windows Server & you want awesome SEO URLs.
For ages I have admired the sexy URLs of other websites, i’ve marveled at their simplicity and how they are ripe full of ‘keyword juice’, I wanted them for my site. I wanted them without wanting to change my hardware or operating system. My solution is a mashup of classic ASP and PHP, it requires a few minor configuration tweeks in IIS, one new page (asp) and a code injection to the header file of your wordpress installation. (more…)
Tags: 301, 301 redirect, Friendly URLs, IIS, redirect, SEO, Wordpress
Posted in
R & D, SEO |
No Comments »
Wordpress duplicate content problem… and fix…
Sunday, April 12th, 2009Whats the problem?
Google indexes your site and then complains in webmaster tools that you have duplicate content, this was the experience a client had recently.
ok great, so what’s the solution?
Place the code below right at the top of you ‘index.php’ script. this will result in a 301 permanent redirect to ‘’ including a trailing slash.
<?php
if ( $_SERVER["REQUEST_URI"] == '/index.php' ) {
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://".$_SERVER["SERVER_NAME"]."/" );
}
?>
Is that all?
Yep
Tags: 301, 301 redirect, duplicate content, php, SEO
Posted in
R & D, SEO |
1 Comment »



