4 Tips to a More Visitor-Friendly Website
I remember my very first website. I thought it was the most amazing thing ever created; it had Flash, Javascript, an animated graphic I designed all on my own, plus various bits of 'artwork' placed at strategic locations throughout the site. Plus it...
An Easy Way To Include RSS In A Web Site
RSS has become a very important issue for web site promotion. This method helps to update web sites daily. A web site will always look actual. Why is RSS important? Visitors like always fresh content on a web site. A web site is...
Benefits Of Making Your Website Accessible To Disabled Users – Part 2: The Business Case
The Disability Discrimination Act states that service providers must not discriminate against disabled people. A website is regarded as a service and therefore comes under this law. Some organisations are changing to their websites, but many are...
PHP:Form Series, Part 1: Validators & Client-side Validation
Introduction
Welcome to the first part of a new two-part series on the PHP:Form web component. In this part, I will give you an introduction to PHP:Form, its features, and why it is so useful. I will also discuss the inbuilt validators that...
Why You Should Stick to Design Conventions
A mistake often made by people who are new to web design is
thinking that they shouldn't pay any attention to what has come
before: they're going to design a website the way they think one
should work. You have to realise, though, that there's...
404 Not Found? Turn 404 Error Page into Profit!
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:
Put this in your site .htaccess file: RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*) 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