Custom routing rules in the CI framework

Source: Internet
Author: User
In the CI framework, a URL and the classes in its corresponding controller and the methods in the class are one by one corresponding, such as:

Www.test.com/user/info/zhaoyingnan

Where user corresponds to the user class in the controller, and info corresponds to the info method in the user class, Zhaoyingnan is the passed parameter

If I don't want to use the Www.test.com/user/info/zhaoyingnan URL,

Instead of changing to Www.test.com/member/zhaoyingnan,

You need a custom routing rule at this point,

When the URL address is Www.test.com/member/zhaoyingnan, the actual request should be Www.test.com/user/info/zhaoyingnan

Here, I recommend the use of the expression, other methods do not mention:

  1. Locate the file that configures the routing rule first

application/config/routes.php

2. Add the following actions

/* * * @author  Zhaoyingnan * Custom Routing rules **/$route[' member/(\w+)/?$ '] =   ' user/info/$1 ';

The above describes the CI framework of the custom routing rules, including the aspects of the content, I hope the PHP tutorial interested in a friend helpful.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.