从主机服务器停用页面

时间:2011-05-28 09:30:41

标签: php rename

我想从托管中停用一个页面。喜欢 万维网。 example.com/page5.php 如果我在浏览器中输入上面的链接。它显示404页面或重定向我在主页等。

如何做到这一点,请指导我。虽然我不想重命名页面。 感谢

2 个答案:

答案 0 :(得分:2)

使用.htaccess

RewriteRule ^page5.php$ index.php [R=404,L]

或在page5.php

header('HTTP/1.1 404 Not Found');

header('Location: index.php');

header('Refresh: 2; url=index.php');
print "You are not allowed to access this page.";

答案 1 :(得分:1)

你走了:

Header(Location: URL);

或者:

die("You cant acces this page");

或者:

header('HTTP/1.1 404 Not Found');
exit;