I solved this problem with the Nginx configuration file.
Add the following codes into your-extra.conf
# Oxwall
if ($uri !~ "^/index.php"){
set $rule 1$rule;
}
if ($uri !~ "/ow_updates/index.php"){
set $rule 2$rule;
}
if ($uri !~ "/ow_updates/"){
set $rule 3$rule;
}
if ($uri !~ "/ow_cron/run.php"){
set $rule 4$rule;
}
if ($uri ~ "(/|.php|.html|.htm|.xml|.feed|robots.txt|.raw|/[^.]*)$"){
set $rule 5$rule;
}
if ($rule = "54321"){
rewrite /(.*) /index.php last;
}
Restart Nginx.
Thanks for help.