![]() |
[SOLVED]clean url works on my local machine but not on the live server - 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: [SOLVED]clean url works on my local machine but not on the live server (/showthread.php?tid=58348) |
[SOLVED]clean url works on my local machine but not on the live server - El Forum - 06-05-2013 [eluser]Cgull[/eluser] Hello, I am using CI 2.1.2 I have a controller called book in application/controllers/admin/ folder This controller extends another controller called: Admin_Controller. In the Admin_Controller: Code: function __construct () I am autoloading the ion_auth library. In the book controller my index function: Code: public function index ($id = NULL) In my routes file: Code: $route['admin'] = 'admin/book/index'; In my views I have: views/admin/book/index.php views/admin/_layout_main.php views/auth/login.php My htaccess file in public_html: Code: <IfModule mod_rewrite.c> On my local machine going to: mysite/admin I get the ion_auth login screen. On the live server, I get page not found: The page cannot be found The page you are looking for might have been removed, had its name changed, or is temporarily unavailable. Please try the following: If you typed the page address in the Address bar, make sure that it is spelled correctly. Open the thinklocal.co.za home page, and then look for links to the information you want. Click the Back button to try another link. HTTP 404 - File not found Internet Information Services Looked everywhere, can't find the problem. Any suggestions what could go wrong? Where should I look? Thank you [SOLVED]clean url works on my local machine but not on the live server - El Forum - 06-06-2013 [eluser]Cgull[/eluser] An update: I looked at lots and lots of posts about this issue. Nothing helps ![]() The update is: If I go to mysite/admin/book I get the login screen, but mysite/admin still gives me Page Not Found. What the ????? My routes again: Code: $routes['admin'] = 'admin/book'; My folders: application/conrollers/admin/book.php public_html/assets So the application folder outside of the public_html folder, in my index.php file in public_html I have: Code: $application_folder = '../application'; What is going on? [SOLVED]clean url works on my local machine but not on the live server - El Forum - 06-06-2013 [eluser]Cgull[/eluser] Oh My God !!! Found the solution! My public_html folder had an old admin folder in it, and that caused all the problems. Halleluya !!!!! Removed this folder, problems solved. |