php – CodeIgniter – 从URL中删除“索引”

前端之家收集整理的这篇文章主要介绍了php – CodeIgniter – 从URL中删除“索引”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

NOTE: I’m not talking about removing index.PHP – I mean index – the method name.

我当前的网址如下所示:

www.mysite.com/view-topic/index/my-topic

这就是我想要的样子:

wwww.mysite.com/view-topic/my-topic

我该怎么做呢?

提前致谢!

您可以为此设置路由,在application / config / routes.PHP添加一个新行:
$route['view-topic/(:any)'] = 'view-topic/index/$1';

这将路由您的URL http://url.com/view-topic/anythinggoeshere将屏蔽view-topic / index / anythinggoeshere控制器.

有关路由的更多信息:

> Routing with Codeigniter

原文链接:https://www.f2er.com/php/134462.html

猜你在找的PHP相关文章