管理モジュールにアクセスしたいです
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];
のように書き換えてください。 ###解決 ! ! ! !
次のように記述します
namespace appadmincontroller;
use thinkController;
class Index extends Controller
モジュールへの入り口を自動的にバインドして閉じます