これらは lighttpd.conf のルールです
$HTTP["host"] =~ "^(www\.)?mysite.com" {
url.rewrite-once = ( "^/$" => "/index.php?route=common/home" )
url.rewrite-if-not-file = ( "^/(.*)" => "/index.php?_route_=$1" )
url.access-deny = ( ".tpl", ".ini", ".log" )
server.error-handler-404 = "/index.php?route=error/not_found"
index-file.names = ( "index.php" )
}
すべて正常に動作します。www.mysite.com/adidas を開くと動作しますが、www.mysite.com/adidas?page=2 を開こうとするとエラー 404 が表示されます。
そして、www.mysite.com/adminを開こうとすると、再びエラー404が表示されますが、www.mysite.com/admin/index.phpを開くと機能します...
どうすれば修正できますか..