
Apr 17th, 2008, 18:23
|
 |
Chief Moderator
|
|
Join Date: Oct 2007
Location: UK
Posts: 1,012
Thanks: 5
Thanked 23 Times in 20 Posts
|
|
|
Re: Redirect broken links
Do you know if you're running the Apache web server?
You can use a .htaccess in the root of your web server to redirect certain pages to new ones.
For example, to redirect old.php to new.php, use; - Code: Select all
Redirect /old.php http://yoursite.com/new.php
|