| General Databases (73) Linux (41) Outside the Cube (5072) Programming (679) Web publishing (65) about DelphiFAQ (14) JavaScript (31) perl CGI (3) VBScript (1) Web Hosting (8) Windows (431) |
Deny everybody acces to a file on web site - using Apache
Question: How can I deny everybody acces to a file on web site? The file is called private.html and in my root folder.Answer: The simplest solution is to delete the file.Is it some kind of log file and did you intend to view the file occasionally from the shell? Then you may want to change the rights of the file so no one can see it. chmod 0 private.html You can also use .htaccess if you use the Apache web server. Include these lines into your .htaccess file (placed in your root folder): <Files "private.html"> deny from all </Files> Or you could move the file to a different location - to a directory that is already password protected (and you are the only one having access to it).
Comments:
| |||||||||