CakePHP Routes and Google Webmaster Tools verification

cakephp, google-search-console, seo, url

Solution

They also offer a meta tag that you can use for verification. Use that instead.

Problem

I am working on cakephp project I have URL like : ``` http://www.example.com/ ``` As CakePHP takes an url like ``` http://www.exaple.com/controll/function_name ``` I was going through the web-master tools site verification where I was verifying my site, Google provides verification file(HTML) which I need to store in root directory. The problem is that CakePHP does not allow to put .HTML in the URL, so how can verify my site then ?

Original source