Hi guys,
I have the rewrite rules at below:
rewrite ^(.*)//+(.*)$ $1/$2 permanent;
rewrite ^/(.*)/$ /$1 permanent;
A pro told me to merge it, cause it not good to have 2 rewrite one after another.
How could I make this to only one rewrite rule.
Thank you very much :)