Email Encoding
Friday, February 25th, 2005Automatic Enkoderform
Encode eMail Address
Email Address Encoder
Automatic Enkoderform
Encode eMail Address
Email Address Encoder
Google - Preventing comment spam
vBulletin Hack
Search Engine Optimize vBulletin
Spider Friendly URLs
Examples of different 301 Redirects
SEO Tutorial - SEO GUY
W3C RSS 1.0 News Feed Creation How-To
Making an RSS Feed
Customer Focus Calculator
Macromedia Flash Tutorials
Code for Icons in footer of this blog.
CSS Icons [View source for the code.]
W3C buttons without images
PHP Code
1-Hit.com
Fagan Finder
NetMechanic
SEOMoz
HTML
Robots.txt
CSS
RSS
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]
Address Lookup, Domain Whois record, Network Whois record, DNS records, and more at Whois Source.
TouchGraph GoogleBrowser
Google’s PageRank Explained
A Survey of Google’s PageRank
PageRank Explained with Bright Colors
Topic Sensitive PageRank
Hilltop: A Search Engine based on Expert Documents
Analysis and Implications of Hilltop Algorithm
Patterns in Unstructured Data
LSI-Related Publications (Articles, Reports, and Books)
Example: ~Real Estate
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