基本上,我有一个表格类别,例如
|id|name |
|1 |home |
|2 |tutorial|
...
和表帖之类的
|id|name |cateID|
...
|5 |getting started|2
...
1.如果我tutorial
在类别中查看(点击),那么 url 会像
`index.php/nameOfControllerFile/functionName/2`
2
是表类别的 id。
但我看到我查看的所有网站。看起来像
category/tutorials.htm or like category/tutorials/
2.如果我查看getting started
帖子,那么 url 会像
index.php/nameOfControllerFile/functionName/5
5
是表格帖子的 ID。
但我看到我查看的所有网站。看起来像
category/tutorials/getting-started.htm
这是网站之类的结构http://line25.com/category/tutorials
我怎样才能将基本网址更改为上面的网址?
编辑
如果有两个帖子的标题相同,会发生什么
|id|name |cateID|
...
|5 |getting started|2
|8 |getting started|2
...