htaccess ve php kodu ile yapabilirsin.
htaccess için
RewriteRule kayit.php index.php?sayfa=kayit [R=301,L]

php de yapmak için kayit php in en üstüne
<?
if(preg_match('/kayit.php/ismU', @$_SERVER['PHP_SELF'])){
	header('location:index.php?sayfa=kayit ');
}
?>