1.1 KiB
1.1 KiB
Add Prefix
Prefixing the Path {: .subtitle }
The AddPrefix middleware updates the URL Path of the request before forwarding it.
Configuration Examples
# Prefixing with /foo
labels:
- "traefik.http.middlewares.add-foo.addprefix.prefix=/foo"
# Prefixing with /foo
apiVersion: traefik.containo.us/v1alpha1
kind: Middleware
metadata:
name: add-foo
spec:
addPrefix:
prefix: /foo
"labels": {
"traefik.http.middlewares.add-foo.addprefix.prefix": "/foo"
}
# Prefixing with /foo
labels:
- "traefik.http.middlewares.add-foo.addprefix.prefix=/foo"
# Prefixing with /foo
[http.middlewares]
[http.middlewares.add-foo.addPrefix]
prefix = "/foo"
# Prefixing with /foo
http:
middlewares:
add-foo:
addPrefix:
prefix: "/foo"
Configuration Options
prefix
prefix
is the string to add before the current path in the requested URL. It should include the leading slash (/
).