Guest User

Untitled

a guest
Jun 18th, 2018
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. # The rules below basically say that if the file exists in the tree, just
  2. # serve it; otherwise, go to index.php. This is more future-proof for your
  3. # site, because if you start adding more and more content types, you don't
  4. # need to alter the .htaccess to accomodate them.
  5. # This is an important concept for the Front Controller Pattern which the
  6. # ZF MVC makes use of.
  7.  
  8. RewriteEngine On
  9. RewriteCond %{REQUEST_FILENAME} -s [OR]
  10. RewriteCond %{REQUEST_FILENAME} -l [OR]
  11. RewriteCond %{REQUEST_FILENAME} -d
  12. RewriteRule ^.*$ - [NC,L]
  13. RewriteRule ^.*$ /index.php [NC,L]
  14.  
  15. php_value include_path ".:/home/ajavid/.zend/library"
  16. SetEnv APPLICATION_ENV development
Add Comment
Please, Sign In to add comment