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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T16:55:27+00:00 2026-05-16T16:55:27+00:00

Please help I want to use first URI segment into my CodeIgniter website. Like

  • 0

Please help I want to use first URI segment into my CodeIgniter website.

Like when I open these url they opens my profile:
http://www.facebook.com/buddyforever
or
http://www.myspace.com/zarpio

How can I do this with CodeIgniter? I checked _remap function but first coming controller how to hide controller?

  • 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-16T16:55:28+00:00Added an answer on May 16, 2026 at 4:55 pm

    You can do this using the URL routing of codeigniter…

    If you want your URL to be http://www.mydomain.com/zarpio and you want it to refer to your_controller, then do the following.

    /config/routes.php

    $route['(.*)'] = "your_controller/$1"; // Now, `zarpio` will be passed to `your_controller`
    

    You can access it in your controller like this…

    $my_name = $this->uri->rsegment(2);
    

    However I do not suggest this way of configuring URLs. A better way would be…

    $route['users/(.*)'] = "your_controller/$1";
    

    This way, you’re just renaming your controller name your_controller to users.

    If you want to access profile of a user, you can do it like this…

    $route['users/profile/(.*)'] = "another_controller/method/$1";
    $route['users/(.*)'] = "your_controller/$1";
    

    Consider the order of routing. Since you wrote users/(.*) in your route, it will match users/zarpio as well as users/profile/zarpio, and route both of them to your_controller/$1, which in the case of profile will give you a 404 page not found error. That is why you need to write users/profile/(.*) before users/(.*) in your routing configuration.

    More information in codeigniter URI class documentation

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

Sidebar

Ask A Question

Stats

  • Questions 514k
  • Answers 514k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Download the source code for ASP.NET MVC 2.0 RTM from… May 16, 2026 at 6:13 pm
  • Editorial Team
    Editorial Team added an answer Using the Open method requires that the document already exists.… May 16, 2026 at 6:13 pm
  • Editorial Team
    Editorial Team added an answer So, I've tried to answer my own question with code… May 16, 2026 at 6:13 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

Just wondering if someone can help me code the following. I want to use
Please help me to implement Factory design pattern for the task. I working on
At first I want to say: I couldn't find a support forum for this
I am using Twitter4J API on GAE/J. I want to use the request token
I want to create a component as below: It will be something like dropdownlist.
I have a problem and I couldn't solve it.please help me. I have two
I want to use a linux command line tool from my Java program. I
first(as always) I want to apologize about my english, it may not be clear
Please help me solve my big problem. in my on-line shopping project i created
I need to create an entirely new Sql Server 2008 database and want to

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.