Files
chuanqi-qycq-web/server.php
艾贤凌 1405bfdd86 clear php
2026-03-16 13:10:18 +08:00

16 lines
443 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* ⚠️ 此文件已停用
*
* 区服列表接口已迁移至 Node.js 服务。
* 新接口GET /api/server/list
* 迁移完成时间2026-03-16
* 归档备份位置_php_archive/server.php
*/
header('Content-Type: application/json; charset=utf-8');
http_response_code(410);
echo json_encode([
'code' => 410,
'message' => '此接口已迁移新接口GET /api/server/list',
], JSON_UNESCAPED_UNICODE);