![]() |
mange routes with htaccess file - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: mange routes with htaccess file (/showthread.php?tid=56262) |
mange routes with htaccess file - El Forum - 12-06-2012 [eluser]YahyaKACEM[/eluser] hi, i have this content in my routes file : Code: $route['logout'] = 'admin/logout'; thanx in advance. mange routes with htaccess file - El Forum - 12-06-2012 [eluser]Aken[/eluser] Code: $route['(:any)'] = 'page/index/$1'; No need for .htaccess - just use the :any wildcard and a back reference (parentheses). mange routes with htaccess file - El Forum - 12-06-2012 [eluser]YahyaKACEM[/eluser] [quote author="Aken" date="1354792716"] Code: $route['(:any)'] = 'page/index/$1'; No need for .htaccess - just use the :any wildcard and a back reference (parentheses).[/quote] i already tried that but my full routes file is like this Code: $route['default_controller'] = "welcome"; and i did this: Code: $route['default_controller'] = "welcome"; but that didn't work when i go to contact i get an error about can't find page/index. mange routes with htaccess file - El Forum - 12-06-2012 [eluser]CroNiX[/eluser] Does it look something like this? Code: class Page extends CI_Controller { |