多应用模式下,默认应用路由不生效
onenine-top opened this issue · 2 comments
onenine-top commented
- 路由配置开启强制路由模式
- 路由文件app/home/route/route.php:
<?php
use think\facade\Route;
Route::get('/', 'Index');
Route::get('dd', 'Index/hd');
- app/home/controller/Index.php文件
<?php
declare(strict_types=1);
namespace app\home\controller;
class Index {
public function index() {
return '您好!这是一个[home]示例应用';
}
public function hd() {
return '您好!这是一个[home hd]示例应用';
}
}
访问URL,http://127.0.0.1:8000 时可以正常访问
但是访问http://127.0.0.1:8000/dd 时,提示路由未定义
liu21st commented
多应用的路由都是独立的 没有所谓的默认应用的概念
onenine-top commented