Skip to content
danielgolub edited this page Sep 20, 2014 · 12 revisions

Codengine Documentation

Please make sure .htaccess file exist on your server.
If you use Nginx, simply add the following lines to your server block domain configuration:

 # Codengine configuration
 location / {
     try_files $uri $uri/ /index.php?$args;
 }
 
 location /app {
     deny all;
     return 404;
 }
 # End of Codengine configuration

This will just redirect all requests to the root index.php file (with url parameters) and deny access from all users to the /app folder.

Chapter 1 - Using the routing system
Chapter 2 - Getting started with controllers
Chapter 3 - Combine database with your Codengine app
Chapter 4 - Handling files
Chapter 5 - Language parameters
Chapter 6 - API callback
Chapter 7 - Codengine CLI
Chapter 8 - Tips

Clone this wiki locally