Welcome Guest, Not a member yet? Register   Sign In
Help with simple routing please?
#7

You original .htaccess should be fine.

In your routes, though, the second one doesn't look quite right:
Code:
$route['/([a-z]+)'] = "tlc/view/$1";

You may want to remove the slash (/) in the route key:
Code:
$route['([a-z]+)'] = 'tlc/view/$1';

or to :any:
Code:
$route['(:any)'] = 'tlc/view/$1';
Reply


Messages In This Thread
Help with simple routing please? - by lexxtoronto - 06-12-2015, 07:07 AM
RE: Help with simple routing please? - by roopunk - 06-12-2015, 07:33 AM
RE: Help with simple routing please? - by mwhitney - 06-15-2015, 09:07 AM



Theme © iAndrew 2016 - Forum software by © MyBB