Advertisement
Guest User

Untitled

a guest
Feb 5th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <FilesMatch ".cgi$">
  2. Order allow,deny
  3. Allow from all
  4. </FilesMatch>
  5.  
  6. <FilesMatch "."> # All other files
  7. Order allow,deny
  8. Deny from all
  9. </FilesMatch>
  10.  
  11. <FilesMatch ".cgi$">
  12. Order Deny,Allow
  13. Allow from all
  14. </FilesMatch>
  15.  
  16. <FilesMatch "."> # All other files
  17. Order Deny,Allow
  18. Deny from all
  19. </FilesMatch>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement