如何检测当前页面是否是CakePhp的主页?

Dac*_*bah 6 php cakephp cakephp-2.0

如何通过CakePhp检测用户是否在我的网站主页上?

我可以用$this->webroot吗?

目标是仅在当前页面是主页时执行某些操作.

Ara*_*avi 10

你可以试试这个:

if ($this->request->here == '/') {
       // some code
}
Run Code Online (Sandbox Code Playgroud)

阅读这部分文档也很好:

您可以使用CakeRequest来内省有关请求的各种内容.除了探测器之外,您还可以从各种属性和方法中找到其他信息.

$this->request->webroot contains the webroot directory.
$this->request->base contains the base path.
$this->request->here contains the full address to the current request
$this->request->query contains the query string parameters.
Run Code Online (Sandbox Code Playgroud)