如何在codeigniter

时间:2016-03-09 16:15:37

标签: php .htaccess codeigniter url-rewriting url-routing

我试图在现有的Code igniter应用程序中创建SEO友好的URL。我可以找到一个查询字符串URL并且我需要它将它转换为SEO友好。

我想重写以下网址

有关。例如:

http://example.com/en/properties?id_categories=3&sub_categories=65&sub_categories2=5391

对seo友好如下:

http://example.com/en/properties/residential-for-rent

请指导我解决此问题。

1 个答案:

答案 0 :(得分:0)

您需要仔细阅读有关URI路由的文档:http://www.codeigniter.com/userguide2/general/routing.html

类似的东西:

$route['properties/(:any_properties_slug)'] = "properties/get";

然后你可以通过any_properties_slug把你的代码放到控制器Properties :: get()中查找属性