index.php 292 B

123456789101112131415
  1. <?php
  2. /**
  3. * 物流自提服务站首页
  4. *
  5. ***/
  6. defined('InShopNC') or exit('Access Invalid!');
  7. class indexControl extends BaseDeliveryControl{
  8. public function __construct(){
  9. parent::__construct();
  10. @header('location: index.php?act=login');die;
  11. }
  12. }