91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

thinkphp5配置允許指定ip訪問模塊的方法

發布時間:2021-01-15 15:13:18 來源:億速云 閱讀:513 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關thinkphp5配置允許指定ip訪問模塊的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

在config.php中添加

'allow_module_ip' => ['admin' => '*'], // 設置某些ip可以訪問指定模塊

['admin' => '*'] 所有ip都可以訪問admin模塊,
['admin' => ['127.0.0.1','192.168.1.100']] 僅這兩個ip可以訪問admin模塊

最好加在這個位置

// 禁止訪問模塊
'deny_module_list'       => ['common'],
// 設置某些ip可以訪問指定模塊
'allow_module_ip'        => ['admin' => '*'],
// 默認控制器名
'default_controller'     => 'Index',

需要修改框架代碼

thinkphp/library/think/App.php

代碼位置如下

public static function module($result, $config, $convert = null) {
        if (is_string($result)) {
            $result = explode('/', $result);
        }
        $request = Request::instance();
        if ($config['app_multi_module']) {
            // 多模塊部署
            $module    = strip_tags(strtolower($result[0] ?: $config['default_module']));
            $bind      = Route::getBind('module');
            $available = false;
            if ($bind) {
                // 綁定模塊
                list($bindModule) = explode('/', $bind);
                if (empty($result[0])) {
                    $module    = $bindModule;
                    $available = true;
                } elseif ($module == $bindModule) {
                    $available = true;
                }
            } elseif (!in_array($module, $config['deny_module_list']) && is_dir(APP_PATH . $module)) {
                $available = true;
            }
            
            //region 設置了限制ip訪問模塊, 如:'allow_module_ip' => ['admin'=>['127.0.0.1']]
            if (isset($config['allow_module_ip']) && isset($config['allow_module_ip'][$module])) {
                $allowIps = $config['allow_module_ip'][$module];
                if (!in_array($_SERVER['REMOTE_ADDR'], $allowIps) && $allowIps != '*') {
                    $available = false;
                }

            }
            //end region

            // 模塊初始化
            if ($module && $available) {
                // 初始化模塊
                $request->module($module);
                $config = self::init($module);
                // 模塊請求緩存檢查
                $request->cache($config['request_cache'], $config['request_cache_expire'], $config['request_cache_except']);
            } else {
                throw new HttpException(404, 'module not exists:' . $module);
            }
        } else {
            // 單一模塊部署
            $module = '';
            $request->module($module);
        }
        
        // ......
}

關于“thinkphp5配置允許指定ip訪問模塊的方法”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

民丰县| 额尔古纳市| 泸定县| 获嘉县| 五华县| 横山县| 双牌县| 揭西县| 义乌市| 梨树县| 汉中市| 淳化县| 宁德市| 绥棱县| 蓝山县| 哈尔滨市| 建阳市| 楚雄市| 句容市| 澄江县| 新巴尔虎左旗| 元朗区| 锡林郭勒盟| 肥城市| 蓬莱市| 会同县| 罗山县| 大英县| 全南县| 大丰市| 安新县| 东城区| 万山特区| 仲巴县| 万州区| 铅山县| 呼图壁县| 自治县| 吉水县| 屏边| 赣州市|