利用ThinkPHP实现伪静态如何去掉目录中的index.php

2024-11-25 04:15:36
推荐回答(1个)
回答1:

可以使用静态路由,

'URL_ROUTER_ON'   => true, 
'URL_MAP_RULES'=>array( 'new/top' => 'news/index/type/top')

'URL_ROUTER_ON'   => true, 
'URL_MAP_RULES'=>array('new/top.html' => 'news/index?type=top')