次のように動作するrewrite
ルールを見つけようとしています。lighttpd
uri (プロトコルとドメインの後の部分)にルールが含まれていない場合。period
例:
uri = "/people/add"
Should run the rule.
uri = "/js/main.js"
Should NOT run the rule.
uri = "/people.php"
Should NOT run the rule.
これは私がこれまでに持っているものですが、期待どおりに動作せず、常にルールを実行します:
$HTTP["host"] =~ "^(my\.domain\.com)$" {
url.rewrite-once = (
"^/(.*)$" => "index.php/$1"
)
}