Redirect all requests without a path

I tried this but it’s not redirecting. How do I test to see if the incoming request has nothing in the path or just / in the path.

acl is_root_request path /

http-request redirect code 301 location https://parked-domains.com/?domain=%[req.hdr(Host)] if is_root_request

Give this a try it should work for you. The url option is an exact string match and whether they send a host.com or host.com/ the initial url is still /

acl empty_url url /
http-request redirect location https://parked-domains.com/?domain=%[req.hdr(Host)] code 301 if empty_url

Test examples:

user@hapee01:/etc/hapee-2.8$ curl http://127.0.0.1/ -vvv
*   Trying 127.0.0.1:80...
* Connected to 127.0.0.1 (127.0.0.1) port 80 (#0)
> GET / HTTP/1.1
> Host: 127.0.0.1
> User-Agent: curl/7.81.0
> Accept: */*
>
* Mark bundle as not supporting multiuse
< HTTP/1.1 301 Moved Permanently
< content-length: 0
< location: https://parked-domains.com/?domain=127.0.0.1
<
* Connection #0 to host 127.0.0.1 left intact

user@hapee01:/etc/hapee-2.8$ curl http://127.0.0.1 -vvv
*   Trying 127.0.0.1:80...
* Connected to 127.0.0.1 (127.0.0.1) port 80 (#0)
> GET / HTTP/1.1
> Host: 127.0.0.1
> User-Agent: curl/7.81.0
> Accept: */*
>
* Mark bundle as not supporting multiuse
< HTTP/1.1 301 Moved Permanently
< content-length: 0
< location: https://parked-domains.com/?domain=127.0.0.1
<
* Connection #0 to host 127.0.0.1 left intact

user@hapee01:/etc/hapee-2.8$ curl http://127.0.0.1/hi -vvv
*   Trying 127.0.0.1:80...
* Connected to 127.0.0.1 (127.0.0.1) port 80 (#0)
> GET /hi HTTP/1.1
> Host: 127.0.0.1
> User-Agent: curl/7.81.0
> Accept: */*
>
* Mark bundle as not supporting multiuse
< HTTP/1.1 404 Not Found
< date: Wed, 25 Oct 2023 21:45:47 GMT
< content-length: 271
< content-type: text/html; charset=iso-8859-1
<
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL was not found on this server.</p>
<hr>
<address>Apache/2.4.52 (Ubuntu) Server at 127.0.0.1 Port 80</address>
</body></html>
* Connection #0 to host 127.0.0.1 left intact

That is perfect, thank you!