Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6663817
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T02:32:28+00:00 2026-05-26T02:32:28+00:00

I want to use codeigniter for an ecommerce project I’m working on but I

  • 0

I want to use codeigniter for an ecommerce project I’m working on but I think I need some custom routing and I’m not sure if this is possible. I want to be able to use this url:

http://myecommsite.com/store/mens

By default in CI this would call the mens function in the store class. What I actually want is it to call a generic function in the store class and feed in ‘mens’ as a paremeter. The reason for this is that this site needs to have a mens,womens and childrens section.

Is this possible?

Also When I get further down the line…i.e

http://myecommsite.com/store/mens/category1/category2

how do I make Ci work with this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T02:32:29+00:00Added an answer on May 26, 2026 at 2:32 am

    Simply define a custom route in application/config/routes.php

    Something like, for your url http://myecommsite.com/store/mens

    $route['store/(:any)'] = "store/customfunction/$1";
    

    This way all requests will be mapped to your “customfunction” method, which takes the parameter “mens”

    You might also want to consdere the __remap() function, which overrides the methods (as opposed to the routing, which overrides the whole URI) Quoting from the manual:

    If your controller contains a function named __remap(), it will always
    get called regardless of what your URI contains. It overrides the
    normal behavior in which the URI determines which function is called,
    allowing you to define your own function routing rules.

    So you can use a __remap() function in your controller store, and anything will be redirected to that. Any segments after the method name are passed into __remap() as second parameter, and you can use this array with call_user_func_array().
    This could come in handy for your second examples of URI. Might be something like

    function __remap('mymethod',$array = array())
    {
      return call_user_func_array('mymethod',$array);
    }
    

    and in your method “mymethod” you pick the array element and do what you need to do

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a CodeIgniter project. I want to use Memcache, but I don't want
I want use from multiple upload image in codeigniter but problem is here that
I'm running a LAMP environment with CodeIgniter. I want to be able to use
i want use some data from a website with web service. i have a
I want to use Powershell to write some utilities, leveraging our own .NET components
I use Codeigniter to create a multilingual website and everything works fine, but when
I really want to setup a portable php environment. I would need to use
Please help I want to use first URI segment into my CodeIgniter website. Like
Just starting to use CodeIgniter, and I'd like to import some of my old
I am building a Facebook app using iframe rendering. I want to use CodeIgniter

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.