Using below if and rewrite function how can I remove trailing slashes on all URLs that is appended after /mens-wear and /womens-wear. Example /mens-wear/shirts/
if (mens-wear, womens-wear) {
rewrite ^/(.*)/$ /$1 permanent;
}
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Click below to sign up and get $100 of credit to try our products over 60 days!
Hi @riyaaaz,
You’ll need to use regex. The rule itself should look something like
Regards, KDSys