Skip to content

Instantly share code, notes, and snippets.

@jlamim
Created April 16, 2016 01:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jlamim/f774e136a07a7756a13613e3e776dc1c to your computer and use it in GitHub Desktop.
Save jlamim/f774e136a07a7756a13613e3e776dc1c to your computer and use it in GitHub Desktop.
Rotas - Tokens únicos com CodeIgniter
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
$route['default_controller'] = 'Base';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;
$route['generate-token'] = "Base/GenerateToken";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment