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