Created
December 22, 2008 21:30
-
-
Save mileszs/39130 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Secure PHP *.inc files | |
# If your PHP application has files ending in '.inc', you will want to | |
# put this either in a .htaccess file in the root of the app, in the | |
# virtual host configuration file, or in your global Apache | |
# configuration file. | |
<Files ~ "\.inc$"> | |
Order allow, deny | |
Deny from all | |
</Files> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment