Arkadaşlar iletişim formuyla ilgili bir sıkıntım var anasayfaya yönlenmiyor nasıl yönlendirebilirim bilgisi olan?


<script>
$(function(){
$('#contact').validate({
submitHandler: function(form) {
    $(form).ajaxSubmit({
    url: 'process.php',
    success: function() {
    $('#contact').hide();
    $('#contact-form').append("<p class='thanks'>Mesajınız tarafımıza iletilmiştir. Doktorlarımız tarafından incelenip en kısa zamanda dönüş yapacağız. Teşekkürler..</p>")
    }
    });
    }
    
});         
});
</script>
</head>

<body>

<div id="contact-form">	

<form id="contact" method="post" action="">
<fieldset>	

<label for="name">İsminiz</label>
<input type="text" name="name" placeholder="İsim ve Soyisminizi yazınız" title="Lütfen İsim ve Soyisminizi giriniz." class="required">

<label for="email">E-mail Adresiniz</label>
<input type="email" name="email" placeholder="Örnek: isminiz@hotmail.com" title="E-mail adresinizi giriniz" class="required email">

<label for="phone">Telefon</label>
<input type="tel" name="Telefon" placeholder="Örnek: (555) 555-5555">


<label for="message">Mesajınız</label>
<textarea name="message"></textarea>

<input type="submit" name="Gönder" class="button" id="submit" value="Gönder" />

</fieldset>
</form>

</div><!-- /end #contact-form -->

<script src="js/modernizr-min.js"></script>
<script>
if (!Modernizr.input.placeholder){
      $('input[placeholder], textarea[placeholder]').placeholder();
}
</script>
</body>
</html>