We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have routes in following format
This route renders same page for both requests:
/test-product/p12345678
/test-product/p12345678/
But for SEO purposes I need redirect url
Is this achievable at all with IronRouter?
The text was updated successfully, but these errors were encountered: