有没有办法拒绝访问某个页面,但只有通过网址访问它?我有一个链接可以将页面加载到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');
?>