vk1985
vk1985

Reputation: 1

how to rewrite url's in cakephp?

I am new to cakephp....i am using cakephp1.3. i want to rewrite all view files to .html extension in cakephp. Please help me,i am in need

Upvotes: 0

Views: 517

Answers (1)

Max
Max

Reputation: 3439

cakephp does not allow you to do that. ctp extension is hard-coded in all the library files. Unless you want to search and replace all the "ctp" reference to "html", its not possible.

But if you want to rewrite the url and append html suffix, then see here

Upvotes: 3

Related Questions