I am using cakephp in one of my projects and my client wants the site URLs to end with .html and not the usual friendly urls. I was wondering if its possible in cakephp to d
According to this page you can do something like this
Router::connect('/(.*).html', array('controller' => 'pages', 'action' => 'display'));
but as you are talking about extensions, that may have other consequences.