2010
03.05
03.05
Every wanted to keep everyone out of a directory? Make your .htaccess file this way:
deny from all
Now that entire directory is ‘blocked’ from prying eyes.
How about not allowing any site visitor from parsing a resource? It goes a little like this:
<Files *.phpi>
deny from all
</Files>
Now any file with the extension phpi will not be parsed.