我正在使用Slim Framework,我需要在公共文件夹下放一个wordpress。
超薄应用程序/公共/博客
问题在于我做什么" www.myweb.com/blog"我得到了那个" Page Not Found"找不到。通过这个时刻,我只有这条路线:
$app->get('/', function ($request, $response, $args) {
$this->logger->info("Slim-Skeleton '/' route");
return $this->renderer->render($response, 'index.phtml', $args);
});
我是否需要采取任何特殊途径来做到这一点?