Apache-2.2

什麼是與 RewriteCond %{REQUEST_FILENAME} !-f 等效的 lighttpd?

  • September 13, 2009
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d   
RewriteRule !\.(js|ico|gif|jpg|png|css)$ /index.php

這是 Zend htaccess,我似乎找不到與此等效的 lighttpd ..

感謝:D

我正在粘貼我們找到的解決方案以及我們找到它的 url,以防我們將來需要它,並為了其他閱讀這篇文章的人的利益。

所以這是一個適用於 lighttpd 重寫系統的巧妙技巧。

url.rewrite-once = (
   ".*\?(.*)$" => "/index.php?$1",
   ".*\.(js|ico|gif|jpg|png|swf|css|html)$" => "$0",
   "" => "/index.php"
)

http://smartycode.com/performance/zend-framework-application-lighten-the-load-server/

但是我們還沒有找到前兩行的解決方案 RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d

lighty 沒有解決方案,似乎沒有任何解決方案

審查http://redmine.lighttpd.net/issues/985

有一個更新檔

引用自:https://serverfault.com/questions/64342