mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-22 23:50:30 +00:00
9 lines
160 B
Text
9 lines
160 B
Text
server.modules += (
|
|
"mod_rewrite",
|
|
)
|
|
|
|
$HTTP["url"] =~ "^/(?!(dist|app|ajax)).*" {
|
|
url.rewrite-once = (
|
|
"^/[^\?]*(\?.*)?" => "/index.php$1"
|
|
)
|
|
}
|