Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new to codeigniter.i have create subfolder for admin controller like

Controller->admin->news.php

Now when i am access the news controller its working fine like

http://mysite.com/sacha/adminenter code here/news

But when i am trying edit delete or pagination like

http://mysite.com/sacha/admin/news/index/1

or

.../sacha/admin/news/1

Its showing 404 page not found error

Routes which i am using is

    $route['admin/news'] = 'admin/news';
    $route['admin/news/index'] = 'admin/news/index';
    $route['admin/news/(:num)'] = 'admin/news/$1';
    $route['admin/news/index/(:num)'] = 'admin/news/index/$1';

I used (:any) also but none is working.

Thanks

share|improve this question

1 Answer

remove your four line you specified above and just update your routes as this,.

$route['admin/news/index/(:num)'] = 'admin/news/index/$1';
share|improve this answer
Still not working – pearl_123 Dec 14 '12 at 9:37
please update your quest with all code of your routes.php file – Miqdad Ali Dec 14 '12 at 9:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.