Report this

What is the reason for this report?

Remove trailing slash on URLs starting with 2 specific categories

Posted on December 10, 2019

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;
   }



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

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.

Hi @riyaaaz,

You’ll need to use regex. The rule itself should look something like

RewriteCond %{HTTP_HOST} !^www.example.com/means-wear$ [NC]
RewriteCond %{HTTP_HOST} !^www.example.com/womens-wear$ [NC]
RewriteRule ^(.*)\/(\?.*)?$ $1$2 [R=301,L]

Regards, KDSys

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.