|
STEP |
EXAMPLE |
1 |
Set up a page (document) where you have only the html (if any) that is needed to serve the ajax UI experience with a share url as say /a - it doesn't matter what it is called. |
/a |
2 |
Set up JavaScript code to work with /a/#![stub]/_ - the / is important at the end. It doesn't have to be _ - but needs to be something. |
/a/#!product/_ |
3 |
The crawler will then generate /a/?_escaped_fragement_=[stub]/_ |
/a/?_escaped_fragement_=product/_ |
4 |
On mydigitalstructure this ends up as /a/_escaped_fragement_=[stub]/_ |
/a/_escaped_fragement_=product/_ |
5 |
So then set up the page that want the crawler to receive, with a shared url as /a/_escaped_fragement_=[stub] - the last / will be stripped off. |
/a/_escaped_fragement_=product |