Header Redirect From List?

Discussion in 'PHP' started by brianj, May 27, 2009.

  1. #1
    Hi, i'm trying to redirect several /foldernames to a different page, basically to a no_result.php

    Anyone know how to do that?

    <?php
    
    ???
    
    header("Location: " ??? ");
    }
    ?>
    PHP:

    thanks
     
    brianj, May 27, 2009 IP
  2. brianj

    brianj Member

    Messages:
    50
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #2
    hmm.. anyone`?
     
    brianj, May 27, 2009 IP
  3. HorseGalleria

    HorseGalleria Peon

    Messages:
    91
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #3
    header('Location: http://www.mywebsite.com/no_result.php');

    This should help http://us3.php.net/manual/en/function.header.php
     
    HorseGalleria, May 27, 2009 IP
  4. brianj

    brianj Member

    Messages:
    50
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #4
    hi thanks, but i need to have a list of foldernames to redirect.. any ideas for that?
     
    brianj, May 27, 2009 IP
  5. shah2k

    shah2k Peon

    Messages:
    502
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #5
    what do you mean list of folder names to redirect...can you clarify?
     
    shah2k, May 29, 2009 IP
  6. PoPSiCLe

    PoPSiCLe Illustrious Member

    Messages:
    4,623
    Likes Received:
    725
    Best Answers:
    152
    Trophy Points:
    470
    #6
    Okay - do you just want to redirect empty results to a specific page? Or is it specific foldernames you want to redirect?

    If you want to redirect every non-existing page/folder to a specific page, look into using .htaccess.

    If you want to redirect specific pages / folders to a specific page, look into adding the folders to either a database or an array, and check against that, something alike:

    if (in_array || in_database) {
    header('location: http://www.mywebsite.com/no_result.php');
    }
     
    PoPSiCLe, Jun 1, 2009 IP
  7. Fr0Gs

    Fr0Gs Peon

    Messages:
    42
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Please be more specific on what you are trying to do
     
    Fr0Gs, Jun 1, 2009 IP