Skip to content

Instantly share code, notes, and snippets.

@yisraeldov
Last active January 1, 2016 07:29
Show Gist options
  • Save yisraeldov/8112426 to your computer and use it in GitHub Desktop.
Save yisraeldov/8112426 to your computer and use it in GitHub Desktop.
only allow access to index.php file
# only allow access to index.php file
<Files ~ ".*">
Deny from all
</Files>
<Files index.php>
Allow from All
</files>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment