私はCodeigniterでチュートリアルシステムを作成していますが、チュートリアルにサブカテゴリを使用することに少し行き詰まっています。
URL構造は次のようになります:/ tutorials / test / 123 / this-is-a-tutorial
- チュートリアルはコントローラーです
- testはカテゴリのショートコードです
- 123はチュートリアルIDです(SQLクエリで使用されます)
- this-is-a-tutorial is just a slug to prettify the URL
What I do is passing the category as a first parameter and the ID as a second parameter to my controller function:
public function tutorial($category = NULL, $tutorial_id = NULL);
Now, if I want subcategories (unlimited depth), like: /tutorials/test/test2/123/another-tutorial. How would I implement this?
Thanks!