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 3244002
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T18:29:58+00:00 2026-05-17T18:29:58+00:00

Say I wanted the following URL scheme, which I got to work by setting

  • 0

Say I wanted the following URL scheme, which I got to work by setting the following URI route.

http://www.domain.com/profile/jimbob123

$route['profile'] = "profile/index";
$route['profile/(:any)'] = "profile/index/$1";

Now, let’s say I want my URL to look like the following when I want to display a “status.”

http://www.domain.com/profile/jimbob123/status/908734efc

How do I go about passing “jimbob123” and “908734efc” into my method so I can check and retrieve this particular record? I tried the following but it doesn’t seem to work.

$route['user/(:any)/status/(:any)'] = "user/plan/$1/$2";
  • 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-17T18:29:58+00:00Added an answer on May 17, 2026 at 6:29 pm

    I assume where you wrote user/(:any)/status/(:any) you meant profile/(:any)/status/(:any)

    That might be one problem, also this:

    The routes are matched in the order they are declared. If you wrote it like this:

    $route['profile'] = "profile/index";
    $route['profile/(:any)'] = "profile/index/$1";
    $route['profile/(:any)/status/(:any)'] = "user/plan/$1/$2";
    

    It wont work because “http://www.domain.com/profile/jimbob123/status/908734efc” matches the second route.

    If you swap the second and third line you should be good.

    $route['profile'] = "profile/index";
    $route['profile/(:any)/status/(:any)'] = "user/plan/$1/$2";
    $route['profile/(:any)'] = "profile/index/$1";
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Say I wanted to invoke the following url that returns Json through an Ajax
Say I have the following matrix which is vertical : {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15} And I want
Let's say I wanted to define an interface which represents a call to a
Say I wanted to make the following re-usable: function replace_foo(target, replacement) { return target.replace(string_to_replace,replacement);
Say you were writing the original C# Object class and you wanted the following
Just wanted to check if it safe to do the following: Lets say I
Say I wanted to have one variable in a class always be in some
Say I wanted to write a program that would export calendar data so that
Say I wanted to list buttons so that the last one was anchored to
Lets say i wanted to add another variable to the database can anybody tell

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.