Advertisement
Guest User

Untitled

a guest
Aug 28th, 2015
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. RewriteEngine On
  2. RewriteBase /
  3. RewriteCond %{REQUEST_URI} !^/maintenance.php$
  4. RewriteRule ^(.*)$ /maintenance.php [R=307,L]
  5.  
  6. <Directory />
  7. AllowOverride none
  8. Require all denied
  9. </Directory>
  10.  
  11. <Directory />
  12. AllowOverride All
  13. Require all granted
  14. </Directory>
  15.  
  16. DocumentRoot "/var/www/html"
  17.  
  18. DocumentRoot "/var/www"
  19.  
  20. <Directory "/var/www">
  21. #AllowOverride None
  22. AllowOverride All
  23. # Allow open access:
  24. Require all granted
  25. </Directory>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement