Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Prevent direct url access to php file

<?php
    /* at the top of 'check.php' */
    if ( $_SERVER['REQUEST_METHOD']=='GET' && realpath(__FILE__) == realpath( $_SERVER['SCRIPT_FILENAME'] ) ) {
        /* 
           Up to you which header to send, some prefer 404 even if 
           the files does exist for security
        */
        header( 'HTTP/1.0 403 Forbidden', TRUE, 403 );

        /* choose the appropriate page to redirect users */
        die( header( 'location: /error.php' ) );

    }
?>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Prevent #direct #url #access #php #file
ADD COMMENT
Topic
Name
5+4 =