|
I assume it means you should deny access to that file. If so, create a file name .htaccess and put the following code inside:
<Files pr.txt>
order allow,deny
deny from all
</Files>
The .htaccess file you just created should be placed in the directory that holds pr.txt. Now, you should not be able to access that file via a web browser.
|