No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

route_ext.php 36KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687
  1. <?php
  2. /*
  3. * @Author: xiaohai zmhwork@qq.com
  4. * @Date: 2024-01-23 10:45:56
  5. * @LastEditTime: 2024-02-19 09:18:01
  6. * @LastEditors: xiaohai zmhwork@qq.com
  7. * @FilePath: \eyoucms\application\route_ext.php
  8. * @Description: 扩展路由
  9. */
  10. use think\Route;
  11. $route_ext_pattern = [
  12. 'tid' => '[\d]+',
  13. 'dirname' => '[\-\w]+',
  14. 'aid' => '[\d]+',
  15. ];
  16. $route_ext = [];
  17. /**
  18. * @description: 获取tid对应的map
  19. * @return {*}
  20. */
  21. function get_tid_map() {
  22. $tid_map = [
  23. 'zczl' => '38',
  24. '38' => 'zczl',
  25. 'gonglve' => '117',
  26. '117' => 'gonglve',
  27. 'zclw' => '116',
  28. '116' => 'zclw',
  29. 'lwck' => '127',
  30. '127' => 'lwck',
  31. 'fpzn' => '131',
  32. '131' => 'fpzn',
  33. 'zcdb' => '132',
  34. '132' => 'zcdb',
  35. 'lnzt' => '133',
  36. '133' => 'lnzt',
  37. 'wthz' => '111',
  38. '111' => 'wthz',
  39. 'zlwd' => '125',
  40. '125' => 'zlwd',
  41. 'zcbt' => '306',
  42. '306' => 'zcbt',
  43. 'zcsb' => '118',
  44. '118' => 'zcsb',
  45. 'anli' => '120',
  46. '120' => 'anli',
  47. 'xgwt' => '122',
  48. '122' => 'xgwt',
  49. 'zx' => '1231',
  50. '1231' => 'zx',
  51. 'zc' => '1232',
  52. '1232' => 'zc',
  53. 'cl' => '1233',
  54. '1233' => 'cl',
  55. 'cp' => '1234',
  56. '1234' => 'cp',
  57. 'tg' => '1235',
  58. '1235' => 'tg',
  59. 'tglist' => '1236',
  60. '1236' => 'tglist',
  61. 'zhengce' => '115',
  62. '115' => 'zhengce',
  63. ];
  64. return $tid_map;
  65. }
  66. /**
  67. * @description: 获取tid对应的url
  68. * @param {*} $tid
  69. * @param {*} $aid
  70. * @return {*}
  71. */
  72. function get_tid_url($tid = 0, $aid = 0,$module = 'home', $controller = 'lists', $action = 'index') {
  73. //array(4) { ["/?m"]=> string(4) "home" ["c"]=> string(5) "Lists" ["a"]=> string(5) "index" ["tid"]=> string(3) "116" }
  74. if ($tid <= 0) {
  75. return false;
  76. }
  77. $tid_map = get_tid_map();
  78. $module = strtolower($module);
  79. $controller = strtolower($controller);
  80. $action = strtolower($action);
  81. // 存在aid
  82. if ($aid > 0) {
  83. if ($module == 'home' && $controller == 'view' && $action == 'index') {
  84. if (array_key_exists($tid, $tid_map)) {
  85. switch ($tid_map[$tid]) {
  86. case 'zczl':
  87. return "/" . $tid_map[$tid] . "/jzzc" . $aid;
  88. break;
  89. case 'gonglve':
  90. case 'zclw':
  91. case 'wthz':
  92. return "/" . $tid_map[$tid] . $aid;
  93. break;
  94. case 'fpzn':
  95. case 'zcdb':
  96. case 'lntz':
  97. case 'zhengce':
  98. return "/" . $tid_map[$tid] . "/cms" . $aid;
  99. }
  100. }
  101. }
  102. } else {
  103. if ($module == 'home' && $controller == 'lists' && $action == 'index') {
  104. if (array_key_exists($tid, $tid_map)) {
  105. return "/" . $tid_map[$tid];
  106. }
  107. }
  108. }
  109. return false;
  110. }
  111. /**
  112. * @description: 扩展路由设置
  113. * @return {*}
  114. */
  115. function set_route_ext()
  116. {
  117. $tid_map = get_tid_map();
  118. // 获取二级域名
  119. $sub_doman = request()->subDomain();
  120. $home_site = get_home_site();
  121. // var_dump($tid_map['zczl']);
  122. //var_dump($sub_doman);
  123. //var_dump($home_site);
  124. //没有html 文件
  125. Route::get('sitemap$','home/City/fileMapHandle',['ext'=>'|txt|xml']);
  126. //Route::get('sitemap$','home/City/fileMapHandle'); //不能重复定义
  127. // 主站点
  128. if (empty($sub_doman) || $sub_doman == "www" || $sub_doman == "zc.dev") {
  129. // Route::get('zczl','home/Lists/index?tid=38');
  130. Route::get([
  131. //新增栏目
  132. 'zx$' => 'home/Lists/index?tid=' . $tid_map['zx'],
  133. 'zx-<page>$' => ['home/Lists/index?tid='.$tid_map['zx'], [], ['page' => '[\d]+']],
  134. 'zx<aid>$' => ['home/View/index?tid=' . $tid_map['zx'], [], ['aid' => '[\d]+']],
  135. 'zc$' => 'home/Lists/index?tid=' . $tid_map['zc'],
  136. 'zc-<page>$' => ['home/Lists/index?tid='.$tid_map['zc'], [], ['page' => '[\d]+']],
  137. 'zc/<areaname>$' => ['home/Lists/index?tid=' . $tid_map['zc'],[],['areaname' => "[\w]+"]],
  138. 'zc/<areaname>-<page>$' => ['home/Lists/index?tid=' . $tid_map['zc'],[],['areaname' => "[\w]+",'page'=>'[\d]+']],
  139. 'zc/<areaname>/<aid>$' => ['home/View/index?tid=' . $tid_map['zc'], [], ['areaname' => "[\w]+",'aid' => '[\d]+']],
  140. //'zc/<aid>$' => ['home/View/index?tid=' . $tid_map['zc'], [], ['aid' => '[\d]+']], //无效 使用action()
  141. 'cl$' => 'home/Lists/index?tid=' . $tid_map['cl'],
  142. 'cl-<page>$' => ['home/Lists/index?tid='.$tid_map['cl'], [], ['page' => '[\d]+']],
  143. 'cl/<aid>$' => ['home/View/index?tid=' . $tid_map['cl'], [], ['aid' => '[\d]+']],
  144. 'cp$' => 'home/Lists/index?tid=' . $tid_map['cp'],
  145. 'cp-<page>$' => ['home/Lists/index?tid='.$tid_map['cp'], [], ['page' => '[\d]+']],
  146. 'cp<aid>$' => ['home/View/index?tid=' . $tid_map['cp'], [], ['aid' => '[\d]+']],
  147. 'taglist$' => 'home/Lists/index?tid=' . $tid_map['tglist'],
  148. 'taglist-<page>$' => ['home/Lists/index?tid='.$tid_map['tglist'], [], ['page' => '[\d]+']],
  149. 'tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['tg'],[], ['tagid' => '[\d]+']],
  150. 'tag<tagid>-<page>$' => ['home/Lists/index?tid='.$tid_map['tg'], [], ['tagid' => '[\d]+','page' => '[\d]+']],
  151. // 职称分类
  152. 'zczl$' => 'home/Lists/index?tid=' . $tid_map['zczl'],
  153. 'zczl-<pa>$' => ['home/Lists/index?tid='.$tid_map['zczl'], [], ['pa' => '[\d]+']],
  154. //'zczl/jzzc<tid>$' => ['home/Lists/index',[],['tid' => '[\d]+']],
  155. //'zczl/jzzc<tid>$' => ['home/Lists/index?', [], ['tid' => '[\d]+']],
  156. //'zczl/jzzc<tid>-<pa>$' => ['home/Lists/index?', [], ['tid' => '[\d]+','pa' => '[\d]+']],
  157. 'zczl/jzzc<areaid>$' => ['home/Lists/index?tid=38', [], ['areaid' => '[\d]+']],
  158. 'zczl/jzzc<areaid>-<pa>$' => ['home/Lists/index?tid=38', [], ['areaid' => '[\d]+','pa' => '[\d]+']],
  159. //职称679个产品页
  160. //获取不到aid
  161. //'id<tid>$' => ['home/Lists/index?', [], ['tid' => '[\d]+']],
  162. 'id<catids>$' => ['home/Lists/index?tid=56', [], ['catids' => '[\d]+']],
  163. 'id<catids>h<pa>$' => ['home/Lists/index?tid=56', [], ['catids' => '[\d]+','pa' => '[\d]+']],
  164. 'id<cid>/sid<catids>$' => ['home/Lists/index?tid=56', [], ['cid' => '[\d]+','catids' => '[\d]+']],
  165. 'id<cid>/sid<catids>h<pa>$' => ['home/Lists/index?tid=56', [], ['cid' => '[\d]+','catids' => '[\d]+','pa' => '[\d]+']],
  166. // 评审攻略
  167. 'gonglve$' => 'home/Lists/index?tid=' . $tid_map['gonglve'],
  168. 'gonglve/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['gonglve'], [], ['page' => '[\d]+','tagid' => '[\d]+']],
  169. 'gonglve/tag<tagid>-<page>$' => ['home/Lists/index?tid=' . $tid_map['gonglve'], [], ['page' => '[\d]+','tagid' => '[\d]+']],
  170. 'gonglve1-<aid>$' => ['home/View/index?tid=' . $tid_map['gonglve'], [], ['aid' => '[\d]+']],
  171. 'gonglve-<page>$' => ['home/Lists/index?tid=' . $tid_map['gonglve'], [], ['page' => '[\d]+']],
  172. // 职称论文
  173. 'zclw$' => 'home/Lists/index?tid=' . $tid_map['zclw'],
  174. 'zclw/lunwen<aid>$' => ['home/View/index?tid=' . $tid_map['zclw'], [], ['aid' => '[\d]+']],
  175. 'zclw-<page>$' => ['home/Lists/index?tid=' . $tid_map['zclw'], [], ['page' => '[\d]+']],
  176. // 职称参考
  177. 'lwck$' => 'home/Lists/index?tid=' . $tid_map['lwck'],
  178. 'lwck/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['lwck'], [], ['page' => '[\d]+','tagid' => '[\d]+']],
  179. 'lwck/tag<tagid>-<page>$' => ['home/Lists/index?tid=' . $tid_map['lwck'], [], ['page' => '[\d]+','tagid' => '[\d]+']],
  180. 'lwck/cankao<aid>$' => ['home/View/index?tid=' . $tid_map['lwck'], [], ['aid' => '[\d]+']],
  181. 'lwck-<page>$' => ['home/Lists/index?tid=' . $tid_map['lwck'], [], ['page' => '[\d]+']],
  182. // 防骗指南
  183. 'fpzn$' => 'home/Lists/index?tid=' . $tid_map['fpzn'],
  184. 'fpzn/cms<aid>$' => ['home/View/index?tid=' . $tid_map['fpzn'], [], ['aid' => '[\d]+']],
  185. 'fpzn-<page>$' => ['home/Lists/index?tid=' . $tid_map['fpzn'], [], ['page' => '[\d]+']],
  186. // 答辩问题
  187. 'zcdb$' => 'home/Lists/index?tid=' . $tid_map['zcdb'],
  188. 'zcdb/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['zcdb'], [], ['page' => '[\d]+','tagid' => '[\d]+']],
  189. 'zcdb/tag<tagid>-<page>$' => ['home/Lists/index?tid=' . $tid_map['zcdb'], [], ['page' => '[\d]+','tagid' => '[\d]+']],
  190. 'zcdb1-<aid>$' => ['home/View/index?tid=' . $tid_map['zcdb'], [], ['aid' => '[\d]+']],
  191. 'zcdb-<page>$' => ['home/Lists/index?tid=' . $tid_map['zcdb'], [], ['page' => '[\d]+']],
  192. // 历年真题
  193. 'lnzt$' => 'home/Lists/index?tid=' . $tid_map['lnzt'],
  194. 'lnzt/cms<aid>$' => ['home/View/index?tid=' . $tid_map['lnzt'], [], ['aid' => '[\d]+']],
  195. 'lnzt-<page>$' => ['home/Lists/index?tid=' . $tid_map['lnzt'], [], ['page' => '[\d]+']],
  196. // 常见问题
  197. 'wthz$' => 'home/Lists/index?tid=' . $tid_map['wthz'],
  198. 'wthz<aid>$' => ['home/View/index?tid=' . $tid_map['wthz'], [], ['aid' => '[\d]+']],
  199. 'wthz-<page>$' => ['home/Lists/index?tid=' . $tid_map['wthz'], [], ['page' => '[\d]+']],
  200. 'wthz/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['wthz'], [], ['page' => '[\d]+','tagid' => '[\d]+']],
  201. 'wthz/tag<tagid>-<page>$' => ['home/Lists/index?tid=' . $tid_map['wthz'], [], ['page' => '[\d]+','tagid' => '[\d]+']],
  202. // 职称补贴
  203. 'zcbt$' => 'home/Lists/index?tid=' . $tid_map['zcbt'],
  204. 'zcbt/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['zcbt'], [], ['page' => '[\d]+','tagid' => '[\d]+']],
  205. 'zcbt/tag<tagid>-<page>$' => ['home/Lists/index?tid=' . $tid_map['zcbt'], [], ['page' => '[\d]+','tagid' => '[\d]+']],
  206. 'zcbt<aid>$' => ['home/View/index?tid=' . $tid_map['zcbt'], [], ['aid' => '[\d]+']],
  207. 'zcbt-<page>$' => ['home/Lists/index?tid=' . $tid_map['zcbt'], [], ['page' => '[\d]+']],
  208. // 补充 职称申报
  209. 'zcsb$' => 'home/Lists/index?tid=' . $tid_map['zcsb'],
  210. 'zcsb<aid>$' => ['home/View/index?tid=' . $tid_map['zcsb'], [], ['aid' => '[\d]+']],
  211. 'zcsb-<page>$' => ['home/Lists/index?tid=' . $tid_map['zcsb'], [], ['page' => '[\d]+']],
  212. // 补充 案例展示
  213. 'anli$' => 'home/Lists/index?tid=' . $tid_map['anli'],
  214. 'anli/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['anli'], [], ['page' => '[\d]+','tagid' => '[\d]+']],
  215. 'anli/tag<tagid>-<page>$' => ['home/Lists/index?tid=' . $tid_map['anli'], [], ['page' => '[\d]+','tagid' => '[\d]+']],
  216. 'anli<aid>$' => ['home/View/index?tid=' . $tid_map['anli'], [], ['aid' => '[\d]+']],
  217. 'anli-<page>$' => ['home/Lists/index?tid=' . $tid_map['anli'], [], ['page' => '[\d]+']],
  218. // 补充 相关问题
  219. 'xgwt$' => 'home/Lists/index?tid=' . $tid_map['xgwt'],
  220. 'xgwt<aid>$' => ['home/View/index?tid=' . $tid_map['xgwt'], [], ['aid' => '[\d]+']],
  221. 'xgwt-<page>$' => ['home/Lists/index?tid=' . $tid_map['xgwt'], [], ['page' => '[\d]+']],
  222. //职称材料
  223. 'zccl$' => 'home/Lists/index?tid=' . $tid_map['zlwd'].'&type=5',
  224. 'zccl-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'].'&type=5', [], ['pa' => '[\d]+']],
  225. 'zccl/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['zlwd'].'&type=5',[],['tagid'=>'[\d]+']],
  226. 'zccl/tag<tagid>-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'].'&type=5', [], ['tagid'=>'[\d]+','pa' => '[\d]+']],
  227. //使用_符号 很多地方用 / 或者 - 分割 避免冲突
  228. '<areaname>_zccl$' => 'home/Lists/index?tid=' . $tid_map['zlwd'].'&type=5',
  229. '<areaname>_zccl-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'].'&type=5', [], ['areaname' => "[\w]+",'pa' => '[\d]+']],
  230. '<areaname>_zccl/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['zlwd'].'&type=5',[],['areaname' => "[\w]+",'tagid'=>'[\d]+']],
  231. '<areaname>_zccl/tag<tagid>-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'].'&type=5', [], ['areaname' => "[\w]+",'tagid'=>'[\d]+','pa' => '[\d]+']],
  232. // 资料文档 - 变成通用文件
  233. 'zlwd$' => 'home/Lists/index?tid=' . $tid_map['zlwd'],
  234. 'zlwd-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'], [], ['pa' => '[\d]+']],
  235. 'zlwd/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['zlwd'],[],['tagid'=>'[\d]+']],
  236. 'zlwd/tag<tagid>-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'], [], ['tagid'=>'[\d]+','pa' => '[\d]+']],
  237. //使用_符号 很多地方用 / 或者 - 分割 避免冲突
  238. '<areaname>_zlwd$' => 'home/Lists/index?tid=' . $tid_map['zlwd'],
  239. '<areaname>_zlwd-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'], [], ['areaname' => "[\w]+",'pa' => '[\d]+']],
  240. '<areaname>_zlwd/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['zlwd'],[],['areaname' => "[\w]+",'tagid'=>'[\d]+']],
  241. '<areaname>_zlwd/tag<tagid>-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'], [], ['areaname' => "[\w]+",'tagid'=>'[\d]+','pa' => '[\d]+']],
  242. //政策文件 - 变成政策指引
  243. 'zcwj$' => 'home/Lists/index?tid=' . $tid_map['zlwd'].'&type=2',
  244. 'zcwj-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'].'&type=2', [], ['pa' => '[\d]+']],
  245. 'zcwj/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['zlwd'].'&type=2',[],['tagid'=>'[\d]+']],
  246. 'zcwj/tag<tagid>-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'].'&type=2', [], ['tagid'=>'[\d]+','pa' => '[\d]+']],
  247. //使用_符号 很多地方用 / 或者 - 分割 避免冲突
  248. '<areaname>_zcwj$' => 'home/Lists/index?tid=' . $tid_map['zlwd'].'&type=2',
  249. '<areaname>_zcwj-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'].'&type=2', [], ['areaname' => "[\w]+",'pa' => '[\d]+']],
  250. '<areaname>_zcwj/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['zlwd'].'&type=2',[],['areaname' => "[\w]+",'tagid'=>'[\d]+']],
  251. '<areaname>_zcwj/tag<tagid>-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'].'&type=2', [], ['areaname' => "[\w]+",'tagid'=>'[\d]+','pa' => '[\d]+']],
  252. //其他
  253. 'zlwd/cms<aid>$' => ['home/View/index?tid=' . $tid_map['zlwd'], [], ['aid' => '[\d]+']],
  254. 'zlwd/cms<aid>-<pa>$' => ['home/View/index?tid=' . $tid_map['zlwd'], [], ['aid' => '[\d]+','pa' => '[\d]+']],
  255. 'zcwj/cms<aid>$' => ['home/View/index?tid=' . $tid_map['zlwd'], [], ['aid' => '[\d]+']],
  256. 'zcwj/cms<aid>-<pa>$' => ['home/View/index?tid=' . $tid_map['zlwd'], [], ['aid' => '[\d]+','pa' => '[\d]+']],
  257. 'ckwj/cms<aid>$' => ['home/View/index?tid=' . $tid_map['zlwd'], [], ['aid' => '[\d]+']],
  258. 'ckwj/cms<aid>-<pa>$' => ['home/View/index?tid=' . $tid_map['zlwd'], [], ['aid' => '[\d]+','pa' => '[\d]+']],
  259. //参考文件 - 隐藏
  260. 'ckwj$' => 'home/Lists/index?tid=' . $tid_map['zlwd'].'&type=3',
  261. 'ckwj-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'].'&type=3', [], ['pa' => '[\d]+']],
  262. 'ckwj/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['zlwd'].'&type=3',[],['tagid'=>'[\d]+']],
  263. 'ckwj/tag<tagid>-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'].'&type=3', [], ['tagid'=>'[\d]+','pa' => '[\d]+']],
  264. //存在site 该规则不匹配 会报404
  265. 'zlwd<aid>$' => ['home/View/index?tid='.$tid_map['zlwd'], [], ['aid' => '[\d]+']],
  266. 'zlwd-c<catid>-p<provid>-y<cityid>$' => ['home/Lists/index?tid=' . $tid_map['zlwd'], [], ['catid' => '[\d]+','provid' => '[\d]+','cityid' => '[\d]+']],
  267. // 城市
  268. //这样写 后台 https://www.zc10000.com/login.php?s=Admin/login 进不去 404
  269. //'<site>' => ['home/Lists/index?tid=139', [], ['site' => "[\w]+"]],
  270. //政策资讯
  271. //https://www.zc10000.com/?m=home&c=View&a=index&aid=732
  272. 'zhengce$' => 'home/Lists/index?tid=' . $tid_map['zhengce'],
  273. 'zhengce-<page>$' => ['home/Lists/index?tid='.$tid_map['zhengce'], [], ['page' => '[\d]+']],
  274. 'zhengce/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['zhengce'], [], ['page' => '[\d]+','tagid' => '[\d]+']],
  275. 'zhengce/tag<tagid>-<page>$' => ['home/Lists/index?tid=' . $tid_map['zhengce'], [], ['page' => '[\d]+','tagid' => '[\d]+']],
  276. 'zhengce/cms<aid>$' => ['home/View/index?tid='.$tid_map['zhengce'], [], ['aid' => '[\d]+']],
  277. //https://www.zc10000.com/zczl/jzzc48/732
  278. 'zczl/jzzc<tid>/<aid>$' => ['home/View/index?', [], ['tid' => '[\d]+','aid' => '[\d]+']],
  279. //301链接
  280. 'zhengcefabu/<aid>$' => ['home/City/tourl?', [], ['aid' => '[\d]+']],
  281. 'gongshichaxun/<aid>$' => ['home/City/tourl?', [], ['aid' => '[\d]+']],
  282. 'pingshenshijian/<aid>$' => ['home/City/tourl?', [], ['aid' => '[\d]+']],
  283. 'pingshentiaojian/<aid>$' => ['home/City/tourl?', [], ['aid' => '[\d]+']],
  284. 'shenbaozhidao/<aid>$' => ['home/City/tourl?', [], ['aid' => '[\d]+']],
  285. 'lunwenzhuanli/<aid>$' => ['home/City/tourl?', [], ['aid' => '[\d]+']],
  286. 'zhichengongzhong/gongchengshigongzhong/zhuligongchengshi/<aid>$' => ['home/City/tourl?', [], ['aid' => '[\d]+']],
  287. 'zhichengongzhong/gongchengshigongzhong/zhongjigongchengshi/<aid>$' => ['home/City/tourl?', [], ['aid' => '[\d]+']],
  288. 'zhichengongzhong/gongchengshigongzhong/gaojigongchengshi/<aid>$' => ['home/City/tourl?', [], ['aid' => '[\d]+']],
  289. 'changjianwenti/zhichenshenbaozhuyishixiang/<aid>$' => ['home/City/tourl?', [], ['aid' => '[\d]+']],
  290. 'lunwenzhuanli/zhichenpingshenlunwenfabiao/<aid>$' => ['home/City/tourl?', [], ['aid' => '[\d]+']],
  291. 'lunwenzhuanli/zhichenpingshenzhuanlishenqing/<aid>$' => ['home/City/tourl?', [], ['aid' => '[\d]+']],
  292. 'lunwenzhuanli/zhichenpingshenkejichengguo/<aid>$' => ['home/City/tourl?', [], ['aid' => '[\d]+']],
  293. 'pingshentiaojian/chujizhichenpingshentiaojian/<aid>$' => ['home/City/tourl?', [], ['aid' => '[\d]+']],
  294. 'pingshentiaojian/zhongjizhichenpingshentiaojian/<aid>$' => ['home/City/tourl?', [], ['aid' => '[\d]+']],
  295. 'pingshentiaojian/gaojizhichenpingshentiaojian/<aid>$' => ['home/City/tourl?', [], ['aid' => '[\d]+']],
  296. 'pingshentiaojian/zhenggaojizhichenpingshentiaojian/<aid>$' => ['home/City/tourl?', [], ['aid' => '[\d]+']],
  297. 'pingshentiaojian/pingshenyiwenjieda/<aid>$' => ['home/City/tourl?', [], ['aid' => '[\d]+']],
  298. 'pingshengonglue/<aid>$' => ['home/City/tourl?', [], ['aid' => '[\d]+']],
  299. 'pingshengonglue/zhichenlunwen/<aid>$' => ['home/City/tourl?', [], ['aid' => '[\d]+']],
  300. 'pingshengonglue/zhichenzhuanli/<aid>$' => ['home/City/tourl?', [], ['aid' => '[\d]+']],
  301. //原城市301
  302. //'<site>$' => ['home/City/chenshi?tid=139', [], ['site' => "[\w]+"]],
  303. '<site>$' => ['home/City/tourl?', [], ['site' => "[\w]+"]],
  304. 'baidu_verify_codeva-<number>$' => ['home/City/fileHandle?', [], ['number' => '[\w]+']],
  305. ]);
  306. // $route_ext += [
  307. // // 职称分类
  308. // 'zczl$' => [
  309. // '/?m=home&c=Lists&a=index&tid=38',
  310. // ['method' => 'get', 'ext' => ''],
  311. // 'cache' => 1
  312. // ],
  313. // 'zczl/jzzc<aid>$' => [
  314. // '/?m=home&c=View&a=index',
  315. // ['method' => 'get', 'ext' => ''],
  316. // ['aid' => '[\d]+'],
  317. // 'cache' => 1
  318. // ],
  319. // // 职称679个产品页
  320. // 'jzgczc<aid>$' => [
  321. // '/?m=home&c=View&a=index',
  322. // ['method' => 'get', 'ext' => ''],
  323. // ['aid' => '[\d]+'],
  324. // 'cache' => 1
  325. // ],
  326. // // 评审攻略
  327. // 'gonglve$' => [
  328. // '/?m=home&c=Lists&a=index&tid=117',
  329. // ['method' => 'get', 'ext' => ''],
  330. // 'cache' => 1
  331. // ],
  332. // 'gonglve<aid>$' => [
  333. // '/?m=home&c=View&a=index',
  334. // ['method' => 'get', 'ext' => ''],
  335. // ['aid' => '[\d]+'],
  336. // 'cache' => 1
  337. // ],
  338. // // 职称论文
  339. // 'zclw$' => [
  340. // '/?m=home&c=Lists&a=index&tid=116',
  341. // ['method' => 'get', 'ext' => ''],
  342. // 'cache' => 1
  343. // ],
  344. // 'zclw/lunwen<aid>$' => [
  345. // '/?m=home&c=View&a=index',
  346. // ['method' => 'get', 'ext' => ''],
  347. // ['aid' => '[\d]+'],
  348. // 'cache' => 1
  349. // ],
  350. // // 防骗指南
  351. // 'fpzn$' => [
  352. // '/?m=home&c=Lists&a=index&tid=131',
  353. // ['method' => 'get', 'ext' => ''],
  354. // 'cache' => 1
  355. // ],
  356. // 'fpzn/cms<aid>$' => [
  357. // '/?m=home&c=View&a=index',
  358. // ['method' => 'get', 'ext' => ''],
  359. // ['aid' => '[\d]+'],
  360. // 'cache' => 1
  361. // ],
  362. // // 答辩问题
  363. // 'zcdb$' => [
  364. // '/?m=home&c=Lists&a=index&tid=132',
  365. // ['method' => 'get', 'ext' => ''],
  366. // 'cache' => 1
  367. // ],
  368. // 'zcdb<aid>$' => [
  369. // '/?m=home&c=View&a=index',
  370. // ['method' => 'get', 'ext' => ''],
  371. // ['aid' => '[\d]+'],
  372. // 'cache' => 1
  373. // ],
  374. // // 历年真题
  375. // 'lnzt$' => [
  376. // '/?m=home&c=Lists&a=index&tid=133',
  377. // ['method' => 'get', 'ext' => ''],
  378. // 'cache' => 1
  379. // ],
  380. // 'lnzt/cms<aid>$' => [
  381. // '/?m=home&c=View&a=index',
  382. // ['method' => 'get', 'ext' => ''],
  383. // ['aid' => '[\d]+'],
  384. // 'cache' => 1
  385. // ],
  386. // // 常见问题
  387. // 'wthz$' => [
  388. // '/?m=home&c=Lists&a=index&tid=111',
  389. // ['method' => 'get', 'ext' => ''],
  390. // 'cache' => 1
  391. // ],
  392. // 'wthz<aid>$' => [
  393. // '/?m=home&c=View&a=index',
  394. // ['method' => 'get', 'ext' => ''],
  395. // ['aid' => '[\d]+'],
  396. // 'cache' => 1
  397. // ],
  398. // // 资料文档
  399. // 'zlwd$' => [
  400. // '/?m=home&c=Lists&a=index&tid=125',
  401. // ['method' => 'get', 'ext' => ''],
  402. // 'cache' => 1
  403. // ],
  404. // ];
  405. } else {
  406. // 城市站点
  407. //var_dump($sub_doman);
  408. //var_dump($home_site);
  409. //二级域名等于 省级site
  410. if ($sub_doman == $home_site) {
  411. // 城市站点
  412. // $route_ext += [
  413. // // 政策
  414. // 'zhengce$' => [
  415. // '/?m=home&c=Lists&a=index&tid=115',
  416. // ['method' => 'get', 'ext' => ''],
  417. // ['aid' => '[\d]+'],
  418. // 'cache' => 1
  419. // ],
  420. // 'zhengce/cms<aid>$' => [
  421. // '/?m=home&c=View&a=index',
  422. // ['method' => 'get', 'ext' => ''],
  423. // ['aid' => '[\d]+'],
  424. // 'cache' => 1
  425. // ],
  426. // // 攻略
  427. // 'gonglve$' => [
  428. // '/?m=home&c=Lists&a=index&tid=117',
  429. // ['method' => 'get', 'ext' => ''],
  430. // 'cache' => 1
  431. // ],
  432. // 'gonglve<aid>$' => [
  433. // '/?m=home&c=View&a=index',
  434. // ['method' => 'get', 'ext' => ''],
  435. // ['aid' => '[\d]+', 'site' => $home_site],
  436. // 'cache' => 1
  437. // ],
  438. // ];
  439. Route::get([
  440. // 政策
  441. 'zhengce$' => 'home/Lists/index?tid=' . $tid_map['zhengce'],
  442. 'zhengce-<page>$' => ['home/Lists/index?tid='.$tid_map['zhengce'], [], ['page' => '[\d]+']],
  443. 'zhengce/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['zhengce'], [], ['page' => '[\d]+','tagid' => '[\d]+']],
  444. 'zhengce/tag<tagid>-<page>$' => ['home/Lists/index?tid=' . $tid_map['zhengce'], [], ['page' => '[\d]+','tagid' => '[\d]+']],
  445. //'zhengce/cms<aid>$' => ['home/View/index?tid=' . $tid_map['zhengce'], [], ['aid' => '[\d]+']],
  446. 'zhengce/cms<aid>$' => ['home/View/index?tid=' . $tid_map['zhengce'], [], ['aid' => '[\d]+']],
  447. //增加常见问题
  448. 'wthz$' => 'home/Lists/index?tid=' . $tid_map['wthz'],
  449. 'wthz<aid>$' => ['home/View/index?tid=' . $tid_map['wthz'], [], ['aid' => '[\d]+']],
  450. 'wthz-<page>$' => ['home/Lists/index?tid=' . $tid_map['wthz'], [], ['page' => '[\d]+']],
  451. 'wthz/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['wthz'], [], ['page' => '[\d]+','tagid' => '[\d]+']],
  452. 'wthz/tag<tagid>-<page>$' => ['home/Lists/index?tid=' . $tid_map['wthz'], [], ['page' => '[\d]+','tagid' => '[\d]+']],
  453. //职称材料
  454. 'zccl$' => 'home/Lists/index?tid=' . $tid_map['zlwd'].'&type=5',
  455. 'zccl-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'].'&type=5', [], ['pa' => '[\d]+']],
  456. 'zccl/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['zlwd'].'&type=5',[],['tagid'=>'[\d]+']],
  457. 'zccl/tag<tagid>-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'].'&type=5', [], ['tagid'=>'[\d]+','pa' => '[\d]+']],
  458. //资料文档
  459. 'zlwd$' => 'home/Lists/index?tid=' . $tid_map['zlwd'],
  460. 'zlwd-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'], [], ['pa' => '[\d]+']],
  461. 'zlwd/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['zlwd'],[],['tagid'=>'[\d]+']],
  462. 'zlwd/tag<tagid>-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'], [], ['tagid'=>'[\d]+','pa' => '[\d]+']],
  463. //政策文件
  464. 'zcwj$' => 'home/Lists/index?tid=' . $tid_map['zlwd'].'&type=2',
  465. 'zcwj-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'].'&type=2', [], ['pa' => '[\d]+']],
  466. 'zcwj/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['zlwd'].'&type=2',[],['tagid'=>'[\d]+']],
  467. 'zcwj/tag<tagid>-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'].'&type=2', [], ['tagid'=>'[\d]+','pa' => '[\d]+']],
  468. //参考文件
  469. 'ckwj$' => 'home/Lists/index?tid=' . $tid_map['zlwd'].'&type=3',
  470. 'ckwj-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'].'&type=3', [], ['pa' => '[\d]+']],
  471. 'ckwj/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['zlwd'].'&type=3',[],['tagid'=>'[\d]+']],
  472. 'ckwj/tag<tagid>-<pa>$' => ['home/Lists/index?tid='.$tid_map['zlwd'].'&type=3', [], ['tagid'=>'[\d]+','pa' => '[\d]+']],
  473. //其他
  474. 'zlwd/cms<aid>$' => ['home/View/index?tid=' . $tid_map['zlwd'], [], ['aid' => '[\d]+']],
  475. 'zlwd/cms<aid>-<pa>$' => ['home/View/index?tid=' . $tid_map['zlwd'], [], ['aid' => '[\d]+','pa' => '[\d]+']],
  476. 'zcwj/cms<aid>$' => ['home/View/index?tid=' . $tid_map['zlwd'], [], ['aid' => '[\d]+']],
  477. 'zcwj/cms<aid>-<pa>$' => ['home/View/index?tid=' . $tid_map['zlwd'], [], ['aid' => '[\d]+','pa' => '[\d]+']],
  478. 'ckwj/cms<aid>$' => ['home/View/index?tid=' . $tid_map['zlwd'], [], ['aid' => '[\d]+']],
  479. 'ckwj/cms<aid>-<pa>$' => ['home/View/index?tid=' . $tid_map['zlwd'], [], ['aid' => '[\d]+','pa' => '[\d]+']],
  480. //https://guangdong.zc10000.com/zlwd/zccp39
  481. 'zlwd/zccp<catid>$' => ['home/Lists/index?tid='.$tid_map['zlwd'], [], ['catid' => '[\d]+']],
  482. //https://guangdong.zc10000.com/zlwd/zccp39/cms1071
  483. 'zlwd/zccp<catid>/cms<aid>$' => ['home/View/index?tid='.$tid_map['zlwd'], [], ['catid' => '[\d]+','aid'=>'[\d]+']],
  484. 'zlwd/zccp<catid>/cms<aid>-<pa>$' => ['home/View/index?tid='.$tid_map['zlwd'], [], ['catid' => '[\d]+','aid'=>'[\d]+','pa'=>'[\d]+']],
  485. // 攻略
  486. 'gonglve$' => 'home/Lists/index?tid=' . $tid_map['gonglve'],
  487. 'gonglve1-<aid>$' => ['home/View/index?tid=' . $tid_map['gonglve'], [], ['aid' => '[\d]+']],
  488. 'gonglve-<page>$' => ['home/Lists/index?tid=' . $tid_map['gonglve'], [], ['page' => '[\d]+']],
  489. 'gonglve/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['gonglve'], [], ['page' => '[\d]+','tagid' => '[\d]+']],
  490. 'gonglve/tag<tagid>-<page>$' => ['home/Lists/index?tid=' . $tid_map['gonglve'], [], ['page' => '[\d]+','tagid' => '[\d]+']],
  491. //这是谁弄的 有问题的
  492. 'gonglve/<site>$' => ['home/Lists/index?tid=' . $tid_map['gonglve'], [], ['site' => "[\w]+"]],
  493. 'gonglve1-<aid>/<site>$' => ['home/View/index?tid=' . $tid_map['gonglve'], [], ['site' => "[\w]+", 'aid' => '[\d]+']],
  494. 'id<catids>$' => ['home/Lists/index?tid=56', [], ['catids' => '[\d]+']],
  495. 'id<catids>h<pa>$' => ['home/Lists/index?tid=56', [], ['catids' => '[\d]+','pa' => '[\d]+']],
  496. 'id<cid>/sid<catids>$' => ['home/Lists/index?tid=56', [], ['cid' => '[\d]+','catids' => '[\d]+']],
  497. 'id<cid>/sid<catids>h<pa>$' => ['home/Lists/index?tid=56', [], ['cid' => '[\d]+','catids' => '[\d]+','pa' => '[\d]+']],
  498. // 城市
  499. /*'/city/<city>' => ['home/City/index?tid=' . $tid_map['gonglve'], [], ['city' => "[\w]+"]],
  500. '/<city>/gonglve$' => ['home/City/index?tid=' . $tid_map['gonglve'], [], ['city' => "[\w]+"]],
  501. '/<city>/gonglve<aid>$' => ['home/City/view?tid=' . $tid_map['gonglve'], [], ['city' => "[\w]+", 'aid' => '[\d]+']],
  502. */
  503. // //不知道是什么
  504. // '/$' => 'home/City/provincial?tid=138',
  505. ]);
  506. } else {
  507. // 其他域名
  508. // 业务咨询
  509. if ($sub_doman == "zcdp") {
  510. // $route_ext += [
  511. // '/' => [
  512. // '/?m=home&c=Lists&a=index&tid=136',
  513. // ['method' => 'get', 'ext' => ''],
  514. // ['aid' => '[\d]+'],
  515. // 'cache' => 1
  516. // ],
  517. // ];
  518. Route::get([
  519. '/$' => 'home/Lists/index?tid=136',
  520. ]);
  521. } elseif ($sub_doman == "zczl") {
  522. // 专利申请
  523. // $route_ext += [
  524. // '/' => [
  525. // '/?m=home&c=Lists&a=index&tid=134',
  526. // ['method' => 'get', 'ext' => ''],
  527. // ['aid' => '[\d]+'],
  528. // 'cache' => 1
  529. // ],
  530. // ];
  531. Route::get([
  532. //'/$' => 'home/Lists/index?tid=134',
  533. '/$' => 'home/Guestbook/lists?tid=134',
  534. ]);
  535. }else{
  536. /*var_dump($sub_doman);
  537. var_dump($home_site);
  538. die;*/
  539. //https://shanxi.zc10000.com/?m=home&c=View&a=index&aid=1023&site=yuncheng
  540. //var_dump($home_site);
  541. //Route::rule('<site>/zlwd/cms<aid>$', 'home/View/index?');
  542. //https://shanxi.zc10000.com/yuncheng/zlwd/cms1023
  543. //资料文档
  544. Route::get([
  545. //存在城市-列表
  546. '<site>/zhengce$' => 'home/Lists/index?tid=' . $tid_map['zhengce'],
  547. '<site>/zhengce/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['zhengce'], [], ['site' => "[\w]+",'page' => '[\d]+','tagid' => '[\d]+']],
  548. '<site>/zhengce/tag<tagid>-<page>$' => ['home/Lists/index?tid=' . $tid_map['zhengce'], [], ['site' => "[\w]+",'page' => '[\d]+','tagid' => '[\d]+']],
  549. '<site>/zhengce-<page>$' => ['home/Lists/index?tid='.$tid_map['zhengce'], [], ['site' => "[\w]+",'page' => '[\d]+']],
  550. //存在城市-详情
  551. '<site>/zhengce/cms<aid>$' => ['home/View/index?tid='.$tid_map['zhengce'], [], ['site' => "[\w]+",'aid' => '[\d]+']],
  552. //存在城市-列表
  553. '<site>/gonglve$' => 'home/Lists/index?tid=' . $tid_map['gonglve'],
  554. '<site>/gonglve1-<aid>$' => ['home/View/index?tid=' . $tid_map['gonglve'], [], ['site' => "[\w]+",'aid' => '[\d]+']],
  555. '<site>/gonglve-<page>$' => ['home/Lists/index?tid=' . $tid_map['gonglve'], [], ['site' => "[\w]+",'page' => '[\d]+']],
  556. '<site>/gonglve/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['gonglve'], [], ['site' => "[\w]+",'page' => '[\d]+','tagid' => '[\d]+']],
  557. '<site>/gonglve/tag<tagid>-<page>$' => ['home/Lists/index?tid=' . $tid_map['gonglve'], [], ['site' => "[\w]+",'page' => '[\d]+','tagid' => '[\d]+']],
  558. //增加常见问题
  559. '<site>/wthz$' => 'home/Lists/index?tid=' . $tid_map['wthz'],
  560. '<site>/wthz<aid>$' => ['home/View/index?tid=' . $tid_map['wthz'], [], ['site' => "[\w]+",'aid' => '[\d]+']],
  561. '<site>/wthz-<page>$' => ['home/Lists/index?tid=' . $tid_map['wthz'], [], ['site' => "[\w]+",'page' => '[\d]+']],
  562. '<site>/wthz/tag<tagid>$' => ['home/Lists/index?tid=' . $tid_map['wthz'], [], ['site' => "[\w]+",'page' => '[\d]+','tagid' => '[\d]+']],
  563. '<site>/wthz/tag<tagid>-<page>$' => ['home/Lists/index?tid=' . $tid_map['wthz'], [], ['site' => "[\w]+",'page' => '[\d]+','tagid' => '[\d]+']],
  564. //城市主页
  565. //https://guangdong.zc10000.com/?site=guangzhou
  566. //https://guangdong.zc10000.com/guangzhou
  567. '<site>$' => ['home/City/chenshi?tid=139', [], ['site' => "[\w]+"]],
  568. //无用了
  569. '<site>/zlwd/cms<aid>$' => ['home/View/index?tid='.$tid_map['zlwd'], [], ['site' => "[\w]+",'aid' => '[\d]+']],
  570. '<site>/zlwd/cms<aid>-<pa>$' => ['home/View/index?tid='.$tid_map['zlwd'], [], ['site' => "[\w]+",'aid' => '[\d]+','pa' => '[\d]+']],
  571. //资料文档筛选页面-已不用
  572. //https://guangdong.zc10000.com/guangzhou/zlwd
  573. '<site>/zlwd$' => ['home/Lists/index?tid=' . $tid_map['zlwd'], [], ['site' => "[\w]+"]],
  574. //https://guangdong.zc10000.com/guangzhou/zlwd/zccp39
  575. '<site>/zlwd/zccp<catid>$' => ['home/Lists/index?tid=' . $tid_map['zlwd'], [], ['site' => "[\w]+",'catid' => '[\d]+']],
  576. //https://guangdong.zc10000.com/guangzhou/zlwd/zccp39/cms1023
  577. '<site>/zlwd/zccp<catid>/cms<aid>$' => ['home/View/index?tid=' . $tid_map['zlwd'], [], ['site' => "[\w]+",'catid' => '[\d]+','aid' => '[\d]+']],
  578. '<site>/zlwd/zccp<catid>/cms<aid>-<pa>$' => ['home/View/index?tid=' . $tid_map['zlwd'], [], ['site' => "[\w]+",'catid' => '[\d]+','aid' => '[\d]+','pa' => '[\d]+']],
  579. ]);
  580. }
  581. }
  582. }
  583. // var_dump(Route::getBind("module"));
  584. // var_dump(Route::getBind("namespace"));
  585. }
  586. return $route_ext;