求解一个php有关问题

WBOY
Release: 2016-06-13 11:52:46
Original
985 people have browsed it

求解一个php问题

<br /><?php<br />if (!is_file('./data/install.lock')) {<br />    header('Location: ./install.php');<br />    exit;<br />}<br />/* 当前程序版本 */<br />define('PIN_VERSION', '3.0');<br />/* 当前程序Release */<br />define('PIN_RELEASE', '20140124');<br />/* 应用名称*/<br />define('APP_NAME', 'app');<br />/* 应用目录*/<br />define('APP_PATH', './app/');<br />/* 模板目录*/<br />define('TMPL_PATH', './Tpl/');<br />/* 数据目录*/<br />define('PIN_DATA_PATH', './data/');<br />/* 扩展目录*/<br />define('EXTEND_PATH', APP_PATH . 'Extend/');<br />/* 配置文件目录*/<br />define('CONF_PATH', PIN_DATA_PATH . 'config/');<br />/* 数据目录*/<br />define('RUNTIME_PATH', PIN_DATA_PATH . 'runtime/');<br />/* HTML静态文件目录*/<br />define('HTML_PATH', PIN_DATA_PATH . 'html/');<br />/* DEBUG开关*/<br />define('APP_DEBUG', false);<br />require("./_core/setup.php");<br />
Copy after login


上面的是一个web应用的index页面,现在有个url为http://********.com/index.php?m=Weixin&a=index
请问这个url会指向哪一个跳转页面啊
------解决方案--------------------
还是自己,不会跳转

学习框架要先阅读开发手册

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!