iron-meteor / iron-router

A client and server side router designed specifically for Meteor.
MIT License
1.98k stars 413 forks source link

Redirect urls with trailing slash "/" to urls without slash #1587

Open naho2081 opened 7 years ago

naho2081 commented 7 years ago

I have routes in following format

Router.route "/:slug/p:productId(\\d{8})"

This route renders same page for both requests: /test-product/p12345678 /test-product/p12345678/

But for SEO purposes I need redirect url

/test-product/p12345678/ (with slash) >>> /test-product/p12345678 (without slash)

Is this achievable at all with IronRouter?