Forum Moderators: open
You can do the redirect from old to new using a Meta tag; this will work on none JavaScript enabled browsers and also a lot of the older SE's.
<META HTTP-EQUIV=Refresh CONTENT="0; URL=newPage.html/">
>>also what shoudl i do to get this bad broken link outta my website
Sorry I do not follow completely; do you mean the old page? If so then I would leave it in place for at least a month just to make sure all the search engines are aware of the new path / page.
-Gs
Depending on your server configuration, you may be able to use a .htaccess file. You would do something like this:
Redirect permanent /oldpage.html http://www.example.com/newpage.html You might want to do a search [google.com] of the forum for more information about redirecting with .htaccess. :)