route.php 1.2 KB

123456789101112131415161718
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. think\Route::rule('/lst','admin/login/lst'); //后台登录地址替换为/lst(访问(本地)登录页面就直接 localhost/lst 访问)
  12. think\Route::rule('','index/index/index');//直接访问前台首页
  13. think\Route::rule('/column','index/index/articlelb','get',['ext'=>'html|htm']);//头部栏目页
  14. think\Route::rule('/index','index/index/index','get',['ext'=>'html|htm']);//网站主页
  15. think\Route::rule('/detailspage','index/index/articlexq','get',['ext'=>'html|htm']);//文章详情页
  16. think\Route::rule('/tags','index/base/search','get',['ext'=>'html|htm']);//热门标签页
  17. think\Route::rule('/search','index/base/searchtop','post',['ext'=>'html|htm']);//头部搜索页