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

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

WBOY
WBOYOriginal
2016-06-13 13:14:05775Durchsuche

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 ---必须存在

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn