我有一个“inheirted”CakePHP网站。我将sites文件夹删除到我的localhost并设置数据库配置。它似乎是加载视图,但.css和图像没有加载,链接直接指向localhost。
localhost/categorys
而不是
localhost/mysite/categorys
是否需要设置配置以确保所有内容都正确指向?
答案 0 :(得分:0)
在app / webroot目录中配置index.php文件。
向下滚动到显示:
的部分/**
* The full path to the directory which holds "app", WITHOUT a trailing DS.
*
*/
if (!defined('ROOT')) {
define('ROOT', dirname(dirname(dirname(__FILE__))));
}
/**
* The actual directory name for the "app".
*
*/
if (!defined('APP_DIR')) {
define('APP_DIR', basename(dirname(dirname(__FILE__))));
}
/**
* The absolute path to the "cake" directory, WITHOUT a trailing DS.
*
*/
if (!defined('CAKE_CORE_INCLUDE_PATH')) {
define('CAKE_CORE_INCLUDE_PATH', ROOT);
}
并确保路径指向评论所指的位置。