Skip to content

Instantly share code, notes, and snippets.

@haganbt
Last active December 20, 2015 15:39
Show Gist options
  • Save haganbt/6155667 to your computer and use it in GitHub Desktop.
Save haganbt/6155667 to your computer and use it in GitHub Desktop.
Coudeigniter - routing static pages
<?php
// Route ALL requests to the static page handler
$route['default_controller'] = "pages";
// All other static pages
$route['(:any)'] = "pages/$1";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment