views:

107

answers:

5

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 do so through any of its routing techniques. Please help.

+2  A: 

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.

BioBuckyBall
Hi Lucas Heneks, Thanks for the link. I tried it but it doesn't seem to work for me... It giving me the missing controller error.
aadravid
A: 

You will need to associate the html extension to the PHP module in Apache as well. I don't remember exactly the adjustment needed but it will be in /etc/httpd/httpd.conf file. (This file may be in a slightly different place depending on your server's OS.) Just look for the line that associates .php with the PHP module. I believe you may be able to define this in the .htaccess file as well but weather or not you can depends on what you are allowed to do in the httpd.conf file.

Dan Berlyoung
That won't be necessary since Apache will just route everything through Cake, extension and all, since none of the .html files actually exists. You only need to do what you describe if you have physical HTML files which you want processed by PHP, which is not the case here.
deceze
A: 

One of the parameters you can send to Router::url() (which is called by other methods like HtmlHelper::link() and Controller::redirect()) is 'ext'. Try setting this to 'html'. E.g:

echo $this->Html->link('Products', array('controller' => 'products', 'action' => 'index', 'ext' => 'html'));

or

$this->redirect(array('controller' => 'products', 'action' => 'index', 'ext' => 'html'));

If it works, try figuring out a way you can override Router::url() to add it in by default.

neilcrookes
+1  A: 

That is well documented in the cookbook.

bancer
+1  A: 

Had to solve this without using Routes. Kept the default route entry for pages:

Router::connect('/pages/*', array('controller' => 'pages', 'action' => 'display'));

and in the display action removed the .html extension and rendered the respective view:

preg_replace('/\.html$/','',$view);
$this->render(null,'default',$view);

While calling the pages added 'ext' to be .html

aadravid