Advertisement
Guest User

Untitled

a guest
May 15th, 2012
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. ServerSignature Off
  2. Options -Indexes -MultiViews
  3.  
  4. Options +FollowSymLinks
  5. RewriteEngine On
  6. RewriteBase /
  7. RewriteRule /^api$ api.php [L]
  8. RewriteRule ^admin/(.*) admin/index.php [L]
  9. RewriteCond /%{REQUEST_FILENAME} !-f
  10. RewriteCond /%{REQUEST_FILENAME} !-d
  11. RewriteRule . /index.php [L]
  12.  
  13. ErrorDocument 400 default
  14. ErrorDocument 401 default
  15. ErrorDocument 403 default
  16. ErrorDocument 404 default
  17. ErrorDocument 500 default
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement