PHP URL Redirect

pankaj.sharma

pankaj.sharma

@pankajsharma-gfQ3r9 Oct 25, 2024
Hi Kidakaka,

Do you have any idea about website URL redirect when the website is in PHP

Replies

Welcome, guest

Join CrazyEngineers to reply, ask questions, and participate in conversations.

CrazyEngineers powered by Jatra Community Platform

  • Prasad Ajinkya

    Prasad Ajinkya

    @prasad-aSUfhP Mar 18, 2008

    Re: Good resources for programmers

    Yeah .. sure.. when you are redirecting .. change the locations in the header section .. also ensure that the redirection is done before the HTML header files are sent .. ie before you output any HTML content on the page, you need to do your redirections.
  • Prasad Ajinkya

    Prasad Ajinkya

    @prasad-aSUfhP Mar 18, 2008

    Re: Good resources for programmers

    Here is the sample script -
    and heres where i copied it from #-Link-Snipped-#
    <?php
    header( 'Location: https://www.yoursite.com/new_page.html' ) ;
    ?>
  • bayazidahmed

    bayazidahmed

    @bayazidahmed-qg0JR9 Mar 19, 2008

    You ma also use http_redirect() if you have PECL extension installed.