Quote:
Originally posted by Slynderdale
hmm would this also work?
PHP Code:
if ($bbuserinfo['usergroupid']==333) {
@header("HTTP/1.0 404 Not Found");
@header("Status: 404 Not Found");
}
I use index.php to hide important folders by adding this to them
PHP Code:
<?php
@header("HTTP/1.0 404 Not Found");
@header("Status: 404 Not Found");
?>
and was wondering if this would also work.
|
I think that would be the best way to make a 404 error ban hack, since then the browser would call up its internal 404 error page like IE does.