Drop last part of URL with Nginx rewrite -


if have following url:

https://kl-office.com/directory 

how can configure nginx rewrite above url as:

https://kl-office.com 

you try this:

rewrite ^.*$ / permanent; 

although, rewrite any request /


Comments