Hi,
I have a variable trying to load and for some reason EE2 is adding some extra code that does not let my flash application load.
var flashvars = {};
flashvars.xml = "{site_url}index.php/embeds/config.xml";and what is coming out is this:
<a href="http://www.mysite.com/index.php/embeds/config.xml?t=1286224420728">http://www.mysite.com/index.php/embeds/config.xml?t=1286224420728</a>My question is, how do I get rid of the extra
?t=1286224420728that ee2 is genereting??? I already try adding this to the .htacces file:
RewriteRule ^(.*)$ /index.php?/$1 [L]but I do not know how to remove the rest.
Thank you