Home > Backend Development > PHP Tutorial > ThinkPHP3.0 使用分组后路径访问无效的解决办法

ThinkPHP3.0 使用分组后路径访问无效的解决办法

WBOY
Release: 2016-06-13 13:14:05
Original
764 people have browsed it

ThinkPHP3.0 使用分组后路径访问无效的解决方法!

在ThinkPHP3.0里使用分组后,按照手册路径无法正常访问的解决办法:

?

检查Conf目录下是否存在config.php,由于分组的原因,常常会将config.php文件放到各个分组文件夹,而忽略了Conf本身的config.php同样要求存在。

?

如果有公共 config?文件的话,所有的config.php文件都要继承一下,例如:

?

$config=require './config.inc.php'; ?//注意目录结构,此配置文件在网站根目录下,跟入口文件同级。

?

改好后,清除Runtime目录再试。。。

?

手册的说明结构:

?

?

Home分组:Conf/Home/config.php

Admin分组:Conf/Admin/config.php

公共配置:Conf/config.php ---必须存在

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