저는 이제 막 tp6을 배우기 시작했습니다
tp6.io/index/Index/hello()를 실행하면 실행 결과는 tp6.io/index/Index/index가 됩니다.
tp6 등 다른 컨트롤러도 마찬가지입니다. .io/index/ Index/user도
Code:
<?phpnamespace appcontroller;use appBaseController;use thinkfacadeDb;use thinkfacadeEnv;class Index Extensions BaseController{ public function index(){ return 'administrator' } } public; function user(){ return 'users'; } public function hello($name = 'ThinkPHP6') { return 'hello,' }}