Guest User

Untitled

a guest
Aug 14th, 2014
308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. Alias /vimbadmin /usr/local/vimbadmin/public
  2.  
  3. <Directory /usr/local/vimbadmin/public>
  4. Options FollowSymLinks
  5. AllowOverride None
  6.  
  7. # For Apache <= 2.3:
  8. Order allow,deny
  9. allow from all
  10.  
  11. # For Apache >= 2.4
  12. # Require all granted
  13.  
  14. SetEnv APPLICATION_ENV production
  15.  
  16. RewriteEngine On
  17. RewriteCond %{REQUEST_FILENAME} -s [OR]
  18. RewriteCond %{REQUEST_FILENAME} -l [OR]
  19. RewriteCond %{REQUEST_FILENAME} -d
  20. RewriteRule ^.*$ - [NC,L]
  21. RewriteRule ^.*$ /usr/local/vimbadmin/index.php [NC,L]
  22. </Directory>
Advertisement
Add Comment
Please, Sign In to add comment