Forum Moderators: coopster
the old urls looks like this
games/xbox_games/gametitle.html
the new urls look like this
games/id/gameid/xbox_games/gametitle.html
now, does anyone have any suggestions on how to fix this problem? Ive tried a redirect but I get an error and I dont think there is any way I can even do a redirect without it affecting the rest of my page, obviously I cant redirect to the games new page because it wouldnt have the "id" so I am stuck, if anyone can help please do.
redirect 301 /games/xbox_games/gametitle.html [site.com...]
so I have to run something like this
if (!isset($id))
{
Redirect
}
But that redirects the loading of the main page as well seeing as I have created my pages using functions and switchs.
if (isset($name) &&!isset($id)) {
header("Location: [site.com...]
}