I have a few sites that need to be unmounted /myUrl/.*.pdf
except /myUrl/apple.pdf
.
I originally wrote
JkUnmount /myUrl/.*.pdf worker1
JkMount /myUrl/apple.pdf worker1
Then I realized JkUnmount will actually overwrite JkMount. Then I created a worker2
for JkMount /myUrl/apple.pdf worker2
but it is kind of expensive to add a new worker just for a simple site.
May anyone tell me how I could actually unmount all /myUrl/.*.pdf
except /myUrl/apple.pdf
.