What is Clean404? Why do I need it?
Clean404 is a single line of JavaScript that you can add to your blog or website to automatically point the broken links in your pages to a Clean404 landing page which displays a few links to users relevant to content you were trying to link to.
In case, where your link was bad simply because it had a typo, Clean404 will find the correct link and display that to the user.
To see how our landing page looks, click on this broken link - http://www.e-junkie.com/ej/selling-ebooks.htmx.
In case, where your link was bad simply because it had a typo, Clean404 will find the correct link and display that to the user.
To see how our landing page looks, click on this broken link - http://www.e-junkie.com/ej/selling-ebooks.htmx.
How is it different from a custom 404 page?
A custom 404 page helps lets you control what users see when they land on your site's pages which don't exist. Clean404 addresses an entirely separate issue. It fixes broken links you have in your site's content.How does it work?
When a user loads a page on your website, Clean404 springs into action and sends all the links on that page to Clean404 server where they are checked to see if any of them are broken. Any broken link is replaced by Clean404 landing page.Can I customize it?
Sure, just add the following code before the Clean404 code on your website or blog, and then keep and modify the options you want.<script type='text/javascript'>
function fof_config() {
fof_pub='YOUR_GOOGLE_ADSENSE_PUBLISHER_ID';
// Clean404 automatically finds this out from your webpage
// to override that, you can specify your Adsense ID here
fof_amz='YOUR_AMAZON_ASSOCIATESID';
// Clean404 automatically finds this out from your webpage
// to override, you can specify your Amazon Associates ID here
fof_hdr='YOUR_LOGO_URL';
// Specify URL (starting with http://) of an image you
// that you want to display on Clean404 landing pages
fof_exclude=Array();
// if you do not want Clean404 to handle links to a particular
// domain, you can add those domains in the array above.
// example:
// 1. To exclude, example.com and www.example.com, you can specify
// Array('example.com','www.example.com');
// 2. To exclude all domains that end with .example.com, you can specify
// Array('*.example.com')
// 3. To exclude your own domain, just specify
// Array('thisdomain')
fof_vis='true';
// To stop our button from displaying on your website, set
// this to false. This will also cause the following changes
// - Clean404 will show you ad 4 times out of 10.
// - Clean404 landing page will stop showing your logo.
}
</script>
To use on Blogger, just click this button
To use on other sites, just paste this code anywhere in your site.
<script type='text/javascript' src='http://static.clean404.com/engine.js'> </script>

