简体   繁体   中英

How to remove folder name controller name and method name for url in codeigniter

I have developed a project in Codeigniter 2x. In this project I use a folder in the controllers folder and crate my controller in this folder and declare a method in this controller. I send two parameters in this method.

My URL looks like this www.exmple.com/folder/home/index/$param1/$param2.

Where myfolder=folder name; home=controller name; index=Method name; and $param1, $param2 is parameters name;

Now I am trying to remove my folder name,controller name and method name.

You can solve it by editing the Routes file. (application/config/routes.php):

$route['custom-url/(.*)/(.*)'] = 'folder/home/index/$1/$2';

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM