- Lighttpd Rewrite Rule (match not having a 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"
- )
- }
- "^/([^.]+)$"