Welcome Guest, Not a member yet? Register   Sign In
URI Routing problem
#1

[eluser]onikage997[/eluser]
hi all,

Can someone please help me. I recently finished applying CodeIgniter in my site. www.the-benefits-of.com

I've tested all url in my local server and all is working fine.

But after uploading all my files in live...
Problem:
- All of my links are showing the default index of my default controller.
- No matter what almost I do, the page calls the function index in the class of my default controller.

Here's my code in routes.php
Code:
$route['default_controller'] = "benefits";
$route['scaffolding_trigger'] = "";
$route['benefits-of-.+.html'] = "benefits/title";
$route['index.html'] = "benefits/index";
$route['about-us.html'] = "page/title";
$route['list-of-benefits.html'] = "page/title";
$route['search-benefits-result.html'] = "page/title";
$route['copyright-notice.html'] = "page/title";

Here's my code in .htaccess
Code:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|css|js|y_key_8cea22b21ebf57b1\.html|sitemap\.xml|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]

Here's my code in controller benefits.php
Code:
<?php
class Benefits extends Controller {
function Benefits()
    {
        parent::Controller();
    }
    
function index()
    {
//Why do I always get called in live?
}
    
function title()
    {
//I don't get called in live but I'm looking good here in the local server.
}
}



Please Note:
- I've tested all url in my local server and all is working fine.


many thanks guys...


Messages In This Thread
URI Routing problem - by El Forum - 11-03-2010, 11:25 AM
URI Routing problem - by El Forum - 11-03-2010, 05:23 PM
URI Routing problem - by El Forum - 11-04-2010, 11:57 AM
URI Routing problem - by El Forum - 11-04-2010, 07:01 PM
URI Routing problem - by El Forum - 11-05-2010, 05:19 AM
URI Routing problem - by El Forum - 11-05-2010, 07:01 AM
URI Routing problem - by El Forum - 11-05-2010, 07:28 AM
URI Routing problem - by El Forum - 11-05-2010, 07:32 AM
URI Routing problem - by El Forum - 11-11-2010, 12:17 AM
URI Routing problem - by El Forum - 03-22-2012, 02:13 AM



Theme © iAndrew 2016 - Forum software by © MyBB