我在 php 中使用 lighthtpd。使用 Zend 框架。
我放了一个只有 HTML 代码的简单页面 test.html。当我尝试查看它时,我收到一个错误:
指定的控制器无效(test.html):/test.html
<!--
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>
在我的conf(不是htaccess)
url.rewrite-once = (
".*\?(.*)$" => "/index.php?$1",
".*\.(js|ico|gif|jpg|png|css)$" => "$0",
"" => "/index.php"
)
我迷路了。尝试几个选项,但不明白问题所在。