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.
|
What does the @header mean/do ?