1

这个爱是我的网址。那么我该如何删除/隐藏

home/post 

从网址

http://localhost/likes/home/post/sports/Secret-Weapons-for-Top-NFL-Teams-/13

     admin/ad_managment

   http://localhost/likes/admin/ad_managment/edit/2

谢谢

4

4 回答 4

3

试试这个我没试过这个应该可以

$route['(:any)/(:num)'] = "admin/ad_managment/$1/$2";
$route['(:any)/(:any)/(:num)'] = "home/post/$1/$2/$3";

查看更多http://ellislab.com/codeigniter/user-guide/general/routing.html

于 2013-09-04T11:31:13.103 回答
2

检查 codeigniter 的用户指南,在这个例子中看看路由是如何完成的。阅读有关代码点火器路由的更多信息

于 2013-09-05T08:40:12.243 回答
0

写入application/config/routes.php

$route['(:any)/(:any)/(:num)'] = "home/post/$1/$2/$3";

现在,您可以使用如下格式:

http://localhost/likes/sports/Secret-Weapons-for-Top-NFL-Teams-/13

Uri 路由文档: http ://ellislab.com/codeigniter/user-guide/general/routing.html

于 2013-09-04T11:09:03.883 回答
0

使用 .htaccess 重写 url。
http://www.pets.com/pet_care_info_07_07_2008.php
RewriteEngine On # 开启重写引擎
RewriteRule ^pet-care/?$ pet_care_info_01_02_2008.php [NC,L]
# 处理“pet-care”请求

https://www.addedbytes.com/articles/for-beginners/url-rewriting-for-beginners/

于 2016-02-19T02:30:30.987 回答