我想从托管中停用一个页面。喜欢 万维网。 example.com/page5.php 如果我在浏览器中输入上面的链接。它显示404页面或重定向我在主页等。
如何做到这一点,请指导我。虽然我不想重命名页面。 感谢
答案 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;