I know how to do HTTP redirections - I created an entire CMS and know php well, but it's the very same index.php that is still responsible of interpreting all pages, so redirection code needs to go into that (or a page included from that). Thus, I also need code to check how the get strings are formatted to see if it's one of the old or new types. It sure is easy to do, but a lot of the things are that I could add if I wanted that would probably be useful as well. It's just that all time spent on something is taken away from something else, and I prefer to use time to make nice additions to my games instead of some temporary legacy support for my website. That's how I get so many games done. What difference is it going to make anyway, almost no of my customers have found me from google, they have found me at other websites, and even if they google for Saira or Nifflas, they still come to the right place.
What
really brings new visitors is new content, so that's what I need to do.
Edit: Or bleh, whatever. It's just this cheap solution. I guess I'll just bloat the website until Google gets the hang of it. I just got to remember to remove it when I install the CMS for my friends.
if ($_GET['page']=="1001Saira") {
header("Location:
http://nifflas.ni2.se/?page=Saira");
die;
}