这个爱是我的网址。那么我该如何删除/隐藏
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
谢谢
这个爱是我的网址。那么我该如何删除/隐藏
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
谢谢
试试这个我没试过这个应该可以
$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
检查 codeigniter 的用户指南,在这个例子中看看路由是如何完成的。阅读有关代码点火器路由的更多信息
写入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
使用 .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/