PHP - 拒绝从链接输入时拒绝访问页面

时间:2016-09-06 11:05:19

标签: javascript php jquery html redirect

有没有办法拒绝访问某个页面,但只有通过网址访问它?我有一个链接可以将页面加载到div元素中,但不希望任何人通过网址访问该页面(例如<address>/pages/contact.php)。我希望它重定向回index.php

jQuery加载代码:

$(function() {
    $('.content').load('pages/home.php');

    var selector = '.side .nav li a';
    $(selector).click(function() {
        $(selector).removeClass('active');
        $(this).addClass('active');

        var target = 'pages/' + $(this).attr('class').split(' ')[0] + '.php';
        $('.content').load(target);
    }); 
});

我的php代码不起作用(将content重定向到index.php):

<?php 
    header('Location: ../index.php');
?>

0 个答案:

没有答案