Kong plugin apply multi sub-path

I want to use different plugin for multi sub-path
How to configure it?

I set like this
/service - no plugin
/service/api - jwt plugin
But jwt plugin is not working
I applied jwt plugin “/service”, it work both path “/service” , “/service/api”

Ingress-1

metadata:
  annotations:
    plugins.konghq.com: jwt
spec:
  rules:
  - http:
      paths:
      - backend:
          serviceName: service
          servicePort: 8080
        path: /service/api

Ingress-2

metadata:
  annotations:
spec:
  rules:
  - http:
      paths:
      - backend:
          serviceName: service
          servicePort: 8080
        path: /service