Dot-Htaccess

如何:Zend .htaccess Lighttpd 轉換

  • September 27, 2009

我們正在使用 Zend 框架,我們從 apache 切換到 lighttpd,zend 的主要 htaccess 文件是這樣的:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d   
RewriteRule !\.(js|ico|gif|jpg|png|css)$ /index.php

與此等效的 lighttpd 是什麼?我在這裡找到了一行,

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

但它不是原始的前兩行(

如果文件和目錄存在,那麼不要

行)

謝謝,

有一個開放的功能請求,但它已經超過 2 年了。 請求:mod_rewrite 檢查文件是否存在(如 apache 中的 mod_rewrite)

還有一個使用者送出的更新檔可用

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