There's an author URL with /content/.../.../form.A1-T5-*.html#/.
The shortened URL www.domainname/form.A1-T5-*
I want a slash to be appended at the end of the URL without which a script doesn't load and the form is blank.
www.domainname/form.A1-T5-*/
A1-T5 is a model name which is dynamic and keeps getting updated for the respective models and
-* is appended through jquery.
Script loads for this URl www.domainname/form.A1-T5-*/#/
#/ gets appended when / is appended in the end, so I'm trying to append a slash.
It works in author and publsiher but does not work in dispatcher. Is there a way / can be appended in the end to this dynamic URL without breaking the static URL using sling mapping or is there any other approach I need to use?
www.domainname/form/#/
Thanks