I found a solution that works in my app. In the layout phtml I've added the
following Javascript:

<script type="text/javascript">
    newURL = window.location.protocol + "//" + window.location.host + "/#" +
window.location.pathname;

    if(location.pathname != '/')
    {
        window.location.href = newURL;
    }

</script>

This will add the # to the url and reload the page. Because of the # in the
new url, the pathname becomes just a '/'. So the if statement checks for
that path to know it doesn't have to redirect again.
-- 
View this message in context: 
http://n4.nabble.com/Deeplinking-SWF-inside-Zend-Framework-tp1558493p1590451.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to