I'm not familiar with this area of coding or what forum this should be in, but this looked the closest from what I could tell. Here is my issue: all of my news files used to be in the following format: http://www.pfcritics.com/news/TheNewsArticle.php http://www.pfcritics.com/news/TheNewsArticle2.php etc... Two months ago, I changed my news directory to news101 so that Google News could index my articles. So, my articles now look like: http://www.pfcritics.com/news101/TheNewsArticle.php http://www.pfcritics.com/news101/TheNewsArticle2.php etc... The problem is, Yahoo is still linking to all of my "news" locations(which now give 404 error pages) instead of the new, "news101" location. So, is there any way I can have it so if a user clicks on the link http://www.pfcritics.com/news/filenametheytriedtoaccess.php, that it will automatically take them to http://www.pfcritics.com/news101/filenametheytriedtoaccess.php? If not, then are there any other suggestions? Thanks, any help is appreciated
Thanks a lot I did a Google search and found this page: http://httpd.apache.org/docs/1.3/mod/mod_alias.html which led to me being able to implement this in my .htaccess root directory... Redirect /news http://www.pfcritics.com/news101 and voila! Two months of Yahoo misdirecting my traffic fixed just like that