how to redirect the request to specified php page by ajax call, below is my code structure
index.html
<html>
<script>
function shift(str)
 {
$.ajax({
   url: 'destination.php',
   type:'POST',
   data: {q:str}
}).done(function( data) {
    $("#result").html(data);
    });
     return false;
   }
 </script>
  <body>
  <input type='button' value='test' onclick="shift('test');">
  <div id='result'></div>
 </html>
destination.php
   <?php
    $string=$_REQUEST['q'];
     if($string=="something")
      {
        header('something.php');
       }
      else
       {
        echo "test";
        }
     ?>
this is my code structure if posted string is same as then header funtion should be work else echo something, but header funstion is not working via ajax
 
     
     
    