首页  >  问答  >  正文

tp5访问不了新增模块,只能访问默认模块,怎么玩?

我想访问admin模块

public/admin.php

<?php
define('APP_PATH', __DIR__ . '/../application/');

define('CONF_PATH', __DIR__.'/../conf/');

define('APP_DEBUG', true);

define('BIND_MODULE','admin');
// 加载框架引导文件
require __DIR__ . '/../thinkphp/start.php';

?>

application/admin/controller/index.php

<?php
namespace app\admin\controller;
class Index {
	public function index(){
		return 'this is admin';
	}
}
?>

路径是:域名/admin.php   就是无法访问,在conf/config.php中写

<?php
	return[		
    // 入口自动绑定模块
      'auto_bind_module'  => true,	
		]
?>

依然无法访问,不知为何?

.htaccess里面改写也不行,改写如下:

RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L];

求解!!!!

savensaven2181 天前1547

全部回复(3)我来回复

  • 花开,若相惜

    花开,若相惜2018-11-25 15:30:28

    ##这样写

    namespace app\admin\controller;

    use think\Controller;

    class Index extends Controller


    #

    回复
    0
  • 天蓬老师

    天蓬老师2018-11-23 11:18:26

    将入口自动绑定到模块关闭

    回复
    0
  • 匠心

    老师,正在学习您的课程,我是用PHP工具箱安装ThinkPHP,在WWW下创建目录mssah,并加入index.php测试,站点域名管理设置没问题,设置---网站目录D:\myphp_www\PHPTutorial\WWW\mmsah,运行时总是执行WWW目录下index.php.您说的“将入口自动绑定到模块关闭”,我不知道如何在PHP工具箱中关闭”入口自动绑定到模块“,谢谢!

    匠心 · 2018-11-28 07:07:46
  • 取消回复