You might want to redirect people to a different page when a page has been deleted, out of date, or if the page just doesn't exist any more. If you have a url that is easily miss spelled you can create redirect pages the will take the user to the correct page.
There are a view ways of redirecting a pages but we will only discuss two of them here
The meta tag go's into the header of your document. Remember to change the page title, this is important for SEO. The meta tag look something like this
<META http-equiv="refresh" content="5;URL=http://www.zendfusion.com/newdirectory/or/page.html">
<html> <head> <title>Page deleted redirect to new page</title> <META http-equiv="refresh" content="5;URL=//www.zendfusion.com/newdirectory/or/page.html"> </head> <body bgcolor="#ffffff"> <center> The contents you are looking for have moved. You will be redirected to the new location automatically in 5 seconds. Please bookmark the correct page at <a href="http://www.zendfusion.com/newdirectory/or/page.html"> http://www.zendfusion.com/newdirectory/or/page.html</a> </center> </body> </html>
Redirecting pages by using the .htaccess file you will have to create a command in the .htaccess file. This command
redirect /directory/old_page.html http://www.zendfusion.com/new_directory/newpage.html
you can also direct an entire directory
redirect /old_dir/ http://www.zendfusion.com/new_dir/