Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
フラグapacheの書き直しを手伝ってください-lighttpdのQSA。現在利用可能:
RewriteRule ^([^?]*) index.php?_route_=$1 [L, QSA]
ケースを試してみてください。ただし、正しく機能していません。
url.rewrite-if-not-file = ("^/(?:\?(.*))?" => "/index.php?_route_=$1")
私がlighttpdについて理解していることから:
url.rewrite-if-not-file = ("^/([^\?]*)$" => "/index.php?_route_=$1")
..動作するはずです。そうでない場合は、次のようになります。
url.rewrite-if-not-file = ("^([^\?]*)$" => "/index.php?_route_=$1")