codeigniter seo url with htaccess

时间:2016-01-06 05:38:43

标签: php .htaccess codeigniter seo

我正在使用Codeigniter 3.0.3

我需要使用像这样的链接

eof()

我有这个htaccess

http://www.example.com/my-controller/my-function/my-value1/other-value2/other-value3/value4

现在我需要owerwrite - 来_ 所以真正的网址将是这样的

/ my_controller /创建my_function / my_value1 / other_value2 / other_value3 / VALUE4

我该怎么做?

1 个答案:

答案 0 :(得分:1)

在你的config / routes.php文件中:

您可以定义此网址:

var index=getColumnIndex(tBody,"Name");

如:

/my-controller/my-function/(:any)/other_value2/other_value3/value4

在这里,这3个$route['my-controller/my-function/(:any)/(:any)/(:any)'] = "my_controller/my_function/$1/$2/$3"; 意味着你的三个参数你可以使用任何东西。

使用简单路线的另一个例子:

(:any)

这里$route['about-us'] = "aboutus"; 是我的控制器名称,我希望以

的形式访问它
aboutus

我可以这样使用。

旁注:您可以使用http://localhost/project/about-us 获取网址值。

User Guide