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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T18:37:37+00:00 2026-05-22T18:37:37+00:00

When I create a controller in CodeIgniter, for example login.php. I create a public

  • 0

When I create a controller in CodeIgniter, for example “login.php”. I create a public function “index” in it, and load a view “login_form” in the function, the CodeIgniter generates the url localhost/test/login.

Now, If i create another function “register” in the same Controller, the url will be localhost/test/login/register, but I want to create url like localhost/test/register. Do I need to create a new controller register and make the index function in that, or same URL can be generated by adding function in login controller. What is the ‘usual’ way to do it?
Thanks.

  • 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-22T18:37:38+00:00Added an answer on May 22, 2026 at 6:37 pm

    As mentioned you can (and most likely should) use a route for this:

    // config/routes.php
    $route['register'] = 'test/register';
    

    This is basically saying: If /register is requested, give them /test/register.

    Note that /test/register is still valid. If you want to disable it for some reason, you can do this:

    $route['test/register'] = FALSE; // Or map to your 404 page
    

    …but in general you won’t need to.

    Note that use of routes does not magically rewrite your links or anything, it just routes the request somewhere else when it is made.

    Remapping is quite cool, but what you’re asking is definitely a job for a route. Read the user guide carefully, there’s a lot you can do with them.

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

Sidebar

Related Questions

I am trying to create controller actions which will return either JSON or partial
I have a namespaced controller for some admin functionality. My create form does not
I've created a .NET winforms MVC. The Controller and View are in the same
I've got a lot controller in my Codeigniter apps, ex: Signup, Profile, Main, etc..
I'm following CodeIgniter's tutorial Create a blog in 20 minutes and I am having
I am having trouble simply making multiple pages with CodeIgniter. For example, I am
I'm using CodeIgniter (v1.7.2) and I've created a custom controller that incorporates authentication called
If I create a controller action and do not decorate it with AcceptVerbs ,
I'm trying to create a controller for my sitemap, but only allow search engines
Whenever I develop sites using Rails, I create a controller called front which has

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.