Archive for February, 2005

Email Encoding

Friday, February 25th, 2005

Automatic Enkoderform
Encode eMail Address
Email Address Encoder

rel=”nofollow”

Friday, February 25th, 2005

Google - Preventing comment spam
vBulletin Hack

vBulletin SEO Hacks

Friday, February 25th, 2005

Search Engine Optimize vBulletin
Spider Friendly URLs

301 Redirects

Friday, February 25th, 2005

Examples of different 301 Redirects

SEO-GUY: SEO Tutorial

Friday, February 25th, 2005

SEO Tutorial - SEO GUY

Create an RSS Feed

Friday, February 25th, 2005

W3C RSS 1.0 News Feed Creation How-To
Making an RSS Feed

Customer Focus Calculator

Friday, February 25th, 2005

Customer Focus Calculator

Flash

Friday, February 25th, 2005

Macromedia Flash Tutorials

RSS / XML Icons

Friday, February 25th, 2005

Code for Icons in footer of this blog.
CSS Icons [View source for the code.]
W3C buttons without images

Display RSS Feeds in HTML

Friday, February 25th, 2005

PHP Code

Multi-Purpose Tools

Friday, February 25th, 2005

1-Hit.com
Fagan Finder
NetMechanic
SEOMoz

Code Validation

Friday, February 25th, 2005

HTML
Robots.txt
CSS
RSS

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]

Whois Lookup

Friday, February 25th, 2005

Address Lookup, Domain Whois record, Network Whois record, DNS records, and more at Whois Source.

TouchGraph GoogleBrowser

Friday, February 25th, 2005

TouchGraph GoogleBrowser

Google PageRank

Friday, February 25th, 2005

Google’s PageRank Explained
A Survey of Google’s PageRank
PageRank Explained with Bright Colors

Topic Sensitive PageRank

Friday, February 25th, 2005

Topic Sensitive PageRank

The Google Hilltop Algorithm

Friday, February 25th, 2005

Hilltop: A Search Engine based on Expert Documents
Analysis and Implications of Hilltop Algorithm

Latent Semantic Indexing

Friday, February 25th, 2005

Patterns in Unstructured Data
LSI-Related Publications (Articles, Reports, and Books)
Example: ~Real Estate

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