Açıklama Yok
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.php 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. // 前端URL的路由配置(支持TP5本身的路由规则)
  14. $rewrite = [];
  15. $askTypeModel = new \weapp\Ask\model\AskTypeModel;
  16. $askConfData = $askTypeModel->getWeappData();
  17. $ask_seo_pseudo = 1;
  18. if (!empty($askConfData['data']['seo_pseudo'])) {
  19. $ask_seo_pseudo = intval($askConfData['data']['seo_pseudo']);
  20. }
  21. if (3 == $ask_seo_pseudo) {
  22. $weapp_id = \think\Db::name('weapp')->where(['code'=>'Ask'])->cache(true, null, "weapp")->getField('id');
  23. $rewrite = [
  24. 'ask/list_'.$weapp_id.'_<is_recom>_<type_id>_p<p>$' => array(
  25. 'plugins/Ask/index',
  26. array('method' => 'get', 'ext' => 'html'),
  27. array('is_recom' => '[\d]+','type_id' => '[\d]+', 'p' => '[\d]+'),
  28. 'cache'=>1
  29. ),
  30. 'ask/list_'.$weapp_id.'_<is_recom>_<type_id>$' => array(
  31. 'plugins/Ask/index',
  32. array('method' => 'get', 'ext' => 'html'),
  33. array('is_recom' => '[\d]+','type_id' => '[\d]+'),
  34. 'cache'=>1
  35. ),
  36. 'ask/list_'.$weapp_id.'_<type_id>_p<p>$' => array(
  37. 'plugins/Ask/index',
  38. array('method' => 'get', 'ext' => 'html'),
  39. array('type_id' => '[\d]+', 'p' => '[\d]+'),
  40. 'cache'=>1
  41. ),
  42. 'ask/list_'.$weapp_id.'_<type_id>$' => array(
  43. 'plugins/Ask/index',
  44. array('method' => 'get', 'ext' => 'html'),
  45. array('type_id' => '[\d]+'),
  46. 'cache'=>1
  47. ),
  48. 'ask$' => array('plugins/Ask/index',array('method' => 'get', 'ext' => 'html'), 'cache'=>1),
  49. 'ask/view_'.$weapp_id.'_<ask_id>$' => array(
  50. 'plugins/Ask/details',
  51. array('method' => 'get', 'ext' => 'html'),
  52. array('ask_id' => '[\d]+'),
  53. 'cache'=>1
  54. ),
  55. ];
  56. }
  57. return $rewrite;