Combine linkTo and action helpers in Ember.js
Ember Link Action addon This is OK for SEO solution! Install addon ember install ember-link-action Usage You can pass closure action as invokeAction param to {{link-to}} component: {{#link-to ‘other-route’ invokeAction=(action ‘testAction’)}} Link to another route {{/link-to}} To pass parameters to action you can use: {{#link-to ‘other-route’ invokeAction=(action ‘testAction’ param1 param2)}} Link to another route {{/link-to}} … Read more