| #610 | |
| #611 | // 比如article/id.html,只能一个文章模型(多模型的不行,没法区分id属于那个模型的),因此丢到最后 |
| #612 | if ( isset($mat['id']) && $this->integer_check($mat['id']) ){ |
| #613 | $u_arr = explode('/', $uri); |
| #614 | if( substr($cfg['link_show'], 0, strlen($u_arr[0])) == $u_arr[0] ){ |
| #615 | $_GET['mid'] = 2; |
| #616 | $_GET['id'] = $mat['id']; |
| #617 | return true; |
| #618 | } |
| #619 | } |