怎么访问admin模块里的index方法


// 定义应用目录为application

define('APP_PATH', __DIR__ . '/application/');

// 加载框架引导文件

require __DIR__ . '/thinkphp/start.php';

index.php 入口文件的代码,上面


<?php

namespace app\admin\controller;


class Admin

{

    public function index()

    {

        echo "welcome tp5!";

    }

}

admin里面的index方法,上面

然而输入地址找不到 http://localhost/tp5/admin/index/index

错误: The requested URL /tp5/admin/index/index was not found on this server.

译文:在这个服务器上没有找到所请求的URL/tp5/admin/索引/索引。


夜筱孜
浏览 2305回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP