Given a value $v = g^ah^b$, with $a,b$ secret, I was wondering whether there was a way to prove in zero knowledge that neither exponent is zero. In other words, given $v$ and $g,h \in \mathbb{G}$, I want to prove $\{a,b \in \mathbb{Z}_p: v = g^ah^b\wedge a\neq 0 \wedge b \neq 0\}$. I know how to achieve the first condition, but I do not know how to achieve the other two.
I know sigma protocols are generally used for this types of proofs, but I haven't found one that achieves specifically this.
Edit:
I should add that $g^a$ and $h^b$ cannot be revealed to the Verifier in my case.
Edit 2:
To achieve the first condition (knowledge of $a,b$ such that $v = g^ah^b)$:
Prover
$r_1, r_2 \in \mathbb{Z}_p$
$u = g^{r_1}h^{r_2}$
$c = H(g, h, u, v)$
$z_1 = r_1 + ca$
$z_2 = r_2 + cb$
Send $(u, c, z_1, z_2)$ to Verifier.
Verifier
$c \stackrel{?}{=} H(g, h, u, v)$
$g^{z_1}h^{z_2} \stackrel{?}{=} v^cu$