WordPress: How To SEO Titles
Thursday, December 28th, 2006If you would like to modify the default installation of WordPress page “Titles” and need the code follow the link below:
Code for 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
Here is a link to SEOGUY’s famous article: “How To Use Anchor Text in Backlinks.”
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.
Examples of different 301 Redirects
SEO Tutorial - SEO GUY
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]
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