Guest User

.htaccess

a guest
Oct 10th, 2011
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. # Elgg htaccess directives
  2. # Copyright Curverider Ltd 2008-2009
  3. # License http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
  4. # Link http://elgg.org/
  5.  
  6. <Files "htaccess_dist">
  7. order allow,deny
  8. deny from all
  9. </Files>
  10.  
  11. # Don't listing directory
  12. Options -Indexes
  13.  
  14. # Follow symbolic links
  15. Options +FollowSymLinks
  16.  
  17. # Default handler
  18. DirectoryIndex index.php
  19.  
  20. # Turn on expiry
  21. <IfModule mod_expires.c>
  22. ExpiresActive On
  23. ExpiresDefault "access plus 10 years"
  24. </IfModule>
  25.  
Advertisement
Add Comment
Please, Sign In to add comment