test-php-rest-api-user/engine/core/route.php

6 lines
175 B
PHP
Raw Normal View History

2024-08-10 00:30:13 +08:00
<?php
if(__URI__ == '/' || in_array(__URL__[0], ['index', 'route']))
Root::url('/main');
elseif(file_exists(__CD__.__URL__[0].'.php'))
require __CD__.__URL__[0].'.php';