Lighttpd url.rewrite-once for html static fail -> Invalid controller specified

alalinop

New Member
I'm using lighhtpd with php. Work with Zend Framework.I put a simple page test.html with only HTML code. When I try to see it, I get an error:Invalid controller specified (test.html): /test.html\[code\]<!-- To change this template, choose Tools | Templates and open the template in the editor. --><!DOCTYPE html><html><head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></head><body> <div>TODO write content</div></body></html>\[/code\]On my conf (not htaccess)\[code\]url.rewrite-once = ( ".*\?(.*)$" => "/index.php?$1", ".*\.(js|ico|gif|jpg|png|css)$" => "$0", "" => "/index.php")\[/code\]I'm lost. Try several option and not understand the problem.
 
Back
Top