I have location
location ~ /(apple|club|car|fly|fitness|nivea|nesquik) {
alias /srv/static-pages/$1.html;
}
I tried
location ~ /(apple|club|car|fly|fitness|nivea|nesquik)(\/)* {
alias /srv/static-pages/$1.html;
}
But it nothing gives me Nginx gives me files accords uri, but i need work it with '/' at the end and without / Example: example.com/apple example.com/apple/ Now i don't know how i can configure it Help please