I am using a lot of JavaScript Redirections on my website. I wanted to try and change them all to PHP Redirections so even if the user doesnt have JavaScript enabled the redirection will still work.
In JavaScript I would do this for the _parent Redirection
<script language = "javascript">
<!--
parent.location.replace("URL")
//-->
</script>
Is there disadvantages to using PHP Header Redirection??