幫助重寫flag apache - lighttpd的QSA。 現在可供選擇:重寫lighthttpd QSA
RewriteRule ^([^?]*) index.php?_route_=$1 [L, QSA]
審理此案,但運行不正常:
url.rewrite-if-not-file = ("^/(?:\?(.*))?" => "/index.php?_route_=$1")
幫助重寫flag apache - lighttpd的QSA。 現在可供選擇:重寫lighthttpd 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")
不能正常工作怎麼樣?它在做什麼? – Jon