这样的写法是如何形成的

php中文网
发布: 2016-06-23 13:12:34
原创
1373人浏览过

比如在地址中输入

http://127.0.0.1/shop/index.php?act=show_groupbuy&op=index

http://127.0.0.1/index.php?act=show_groupbuy&op=index
是一样的
 这说明去掉文件夹也可以,但是我读了一下控制器,没有发现替换的写法呢?

控制器如下

/**     * 控制器调度     *     */    private static function control() {        //二级域名        if ($globals['setting_config']['enabled_subdomain'] == '1' && $_get['act'] == 'index' && $_get['op'] == 'index') {            $store_id = subdomain();            if ($store_id > 0)                $_get['act'] = 'show_store';        }        $act_file = realpath(base_path . '/control/' . $_get['act'] . '.php');        $class_name = $_get['act'] . 'control';        if (!@include($act_file)) {            if (c('debug')) {                throw_exception("base error: access file isn't exists!");            } else {                showmessage('抱歉!您访问的页面不存在', '', 'html', 'error');            }        }        if (class_exists($class_name)) {            $main = new $class_name();            $function = $_get['op'] . 'op';            if (method_exists($main, $function)) {                $main->$function();            } elseif (method_exists($main, 'indexop')) {                $main->indexop();            } else {                $error = "base error: function $function not in $class_name!";                throw_exception($error);            }        } else {            $error = "base error: class $class_name isn't exists!";            throw_exception($error);        }    }​
登录后复制

法语写作助手
法语写作助手

法语助手旗下的AI智能写作平台,支持语法、拼写自动纠错,一键改写、润色你的法语作文。

法语写作助手 31
查看详情 法语写作助手


回复讨论(解决方案)

这是 url 重写造成的
也可能是你配置虚拟主机时未对主站做配置

这是 url 重写造成的
也可能是你配置虚拟主机时未对主站做配置


你说的这些我都没有做,再说如果我做这些说明我肯定懂里面的道理,那我也不会发此帖了。有时要推理别人的思维!

那你是真懂还是假懂?
路径不同就不可能解析到同一文件
如果 shop/index.php 和 admin/index.php 被解析到同一文件,那么要路径做什么?

最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号