Welcome Guest, Not a member yet? Register   Sign In
Url Rewriting problem
#1

[eluser]Comelse[/eluser]
Hi,

I've got a simple controller looking like this :
Code:
class Expert extends Controller {

    public function __construct()
    {
        parent::Controller();    
        $this->load->file('include/top.php');
        $this->load->model('User_model', 'User');
    }
    
    public function index($pseudo)
    {
        echo $pseudo;
    }
}

And I want to have the url :
Code:
expert/index/toto
rewrited has
Code:
expert/toto

I've tried :
Code:
RewriteRule ^/expert/(.*)$ /expert/index/$1 [L]
Whitout success.

Is it possible ?

Thanks a lot


Messages In This Thread
Url Rewriting problem - by El Forum - 01-18-2010, 03:05 AM
Url Rewriting problem - by El Forum - 01-18-2010, 03:23 AM
Url Rewriting problem - by El Forum - 01-18-2010, 03:34 AM
Url Rewriting problem - by El Forum - 01-18-2010, 05:07 AM
Url Rewriting problem - by El Forum - 01-18-2010, 05:19 AM
Url Rewriting problem - by El Forum - 01-18-2010, 05:22 AM
Url Rewriting problem - by El Forum - 01-18-2010, 08:57 AM
Url Rewriting problem - by El Forum - 01-18-2010, 09:09 AM



Theme © iAndrew 2016 - Forum software by © MyBB