谁知道lighttpd关于joomla的rewrite规则?
如题,谁知道,请发下,谢谢 lighttpd.conf 里面加入$HTTP["url"] !~ "\.(gif|png|css|jpg|jpeg|js)$" {
server.error-handler-404 = "/index.php"
}
试试,
或者另外一种:
url.rewrite-final = (
"^/images,*$" => "$0",
"^/templates.*$" => "$0",
"^/administrator.*$" => "$0",
"^/(.*\.php)" => "$0",,
"^/(.*)" => "/index.php/$1"
)
页:
[1]