Archive for the 'SEO Techniques' Category

WordPress: How To SEO Titles

Thursday, December 28th, 2006

If you would like to modify the default installation of WordPress page “Titles” and need the code follow the link below:

Code for SEO Titles

How To Use Anchor Text in Backlinks

Thursday, April 28th, 2005

Here is a link to SEOGUY’s famous article: “How To Use Anchor Text in Backlinks.”

Redirect Multiple Domains

Sunday, February 27th, 2005

Many people have multiple domain names that for one reason or another they want to point to a single site. If you are on an Apache Server, with Mod_rewrite installed, here is a link to a thread at Digital Point that explains how to redirect these domains with one .htaccess file.

301 Redirects

Friday, February 25th, 2005

Examples of different 301 Redirects

SEO-GUY: SEO Tutorial

Friday, February 25th, 2005

SEO Tutorial - SEO GUY

Mod_rewrite: Redirect Domains

Friday, February 25th, 2005

To redirect one domain to another on an Apache Server, using Apache Mod_rewrite, place this code in your .htaccess file:

[CODE]
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www\.)?domain1\.com [NC]
RewriteRule ^(.*)$ http://domain2.com/$1 [R=301,L]
[/CODE]

Mod_rewrite: Non-WWW to WWW

Friday, February 25th, 2005

To redirect the Non-WWW URL for your site to the WWW version [or vice versa] on an Apache Server, using Apache Mod_rewrite, place this code in your .htaccess file:

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

*Additional Options