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