"Poetry is a packsack of invisible keepsakes."Carl Sandburg
|
| |
Creating Custom Error Pages with .htaccess Have you ever noticed that some people have really nice error pages when a page doesn't exist on their site? Wouldn't it be nice if you could make your error page match the rest of your site? Don't fret; you can do it! All you'll need to do is use a ...
How to Get Your Visitors To "Tell A Friend Does your website offer visitors a quick and easy way torecommend it to a friend? If not, you're missing out on apotential gold mine of free traffic.The benefits:1. Automated website promotion. You set up the program andyour visitors do the work of ...
Should you use Searchfeed on your site? Searchfeed. I've known about Searchfeed a long time, but never bothered signing up. And I've discovered that I've been missing out on an income opportunity. Searchfeed works a bit like Google AdSense, where you display contextual ads on your site and ...
|
|
|
| |
Easy way to make money from Error 404.
A 404 error occurs whenever someone requests a URL that is not on your server. Either they have mistyped something, or you moved or deleted a document that used to be on your web site.
So why lost this traffic?
With two-three simple lines of code you can redirect 404 traffic to a sponsor and make money automatically:
sample redirects:
with .htaccess :
404notfoundredirect .htaccess sample #1 #404notfoundredirect ErrorDocument 404 http://www.yoursponsor.com/?youraffiliateidhere
with .htaccess Apache's mod-rewrite:
404notfoundredirect .htaccess with Apache's mod-rewrite sample #3 If http://www.examplesite.com/url/file.html does not exist, redirect to http://www.examplesite.com/index.php
Put this in your site .htaccess file: RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*) http://www.yoursponsor.com/?youraffiliateidhere
all wrong hits will be redirected to your site http://www.yoursponsor.com/?youraffiliateidhere
with javascript (put this page instead of moved/deleted page on your site) 404notfoundredirect Search Engine-Friendly JavaScript Redirect with Frames - sample #4 Go To Sponsor
Please Visit my site sponsor
redirect with php:
404notfoundredirect Redirects with PHP - sample #5
More useful information about .htaccess, redirects, deny/allow you can find at http://www.404notfoundredirect.com/
About the Author None
|
|
|
|
|
|
|