Guest User

Untitled

a guest
Dec 14th, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. location ~* /collections.*?products/([^/]+)/?$ {
  2. rewrite ^/collections.*?products/([^/]+)/?$ /$1.html;
  3. rewrite ^([^_]*)_([^_]*)_(.*)$ $1-$2-$3;
  4. rewrite ^([^_]*)_(.*)$ $1-$2 permanent;
  5. }
  6.  
  7. "/collections/products/someproduct/" to "/someproduct.html"
  8. "/collections/products/some_product/" to "/some-product.html"
  9. "/collections/products/some_other_product/" to "/some-other-product.html"
Add Comment
Please, Sign In to add comment