2011-05-28 50 views
-4

我想停用我的主機中的頁面。像 www。 example.com/page5.php 如果我在瀏覽器中輸入以上鍊接。它顯示我404頁或重定向我在主頁等從主機服務器取消激活頁面

如何做到這一點,請指導我。而我不想重命名該頁面。 感謝

+0

你是什麼意思 「禁用」 究竟是什麼意思?請添加更多細節和上下文。 – 2011-05-28 09:34:36

+0

我現在用htaccess工作了,謝謝。 – Chorlett 2011-05-28 09:36:00

回答

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

在這裏你去:

Header(Location: URL); 

或者:

die("You cant acces this page"); 

或者:

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