説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

route_ext.php 35KB

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