Hi all,
I’ve got my site hooked up with SWFAddress and SWFObject and working pretty well. The last little bit is messing with my head though, I wonder if you can help.
I use mod_rewrite to bring in the correct html content when visitors come from search engines. So the rules:
RewriteRule ^([^/\.]+)\+([^/\.]+)/?$ index.php?address=$1&page=$2 [L]
RewriteRule !\.(xml|swf|js|gif|jpg|png|css)$ index.php
result in a page such as this:
**/index.php?address=article&page=pageName **
when I visit:
/article+pageName
But I also need to get the Flash to go to the right place as well, so the address
/article+pageName
needs to be changed to
/#/article+pageName
on the address bar, how do I do this?
Any help would be great
Kevin