Archive for the ‘SEO Techniques’ Category

WordPress: How To SEO Titles

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

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

Redirect Multiple Domains

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

Examples of different 301 Redirects

SEO-GUY: SEO Tutorial

SEO Tutorial – SEO GUY

Mod_rewrite: Redirect Domains

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

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