flash - Mod_rewriting a query string onto a swf file -
I am trying to use the mod_rewrite to clean the url in a flash video player. First of all, here's the original URL that I'm trying to rewrite: library / player.swf? The path above = path-to-file.flv The URL above works perfectly when I use it directly. I have coded the SWF to automatically capture the path parameter and play the video. There is no problem now my attempt is to rewrite the rule: regrets rule ^ player /(.+)97 library / player.swf? Path = $ 1 [QSA, L] By visiting the URL player / path-to-file .flv, I get the SDF but no video is loaded I have a popup window in the flash Set which allows me to find the name of the path for debugging purposes, and it seems that the path is not being passed at all. On the other hand if I use the same rule, but it points to test.php instead of the player swf, then the test.php file is capable of unifying the parameter. So the question comes down, am I doing something wrong or is it impossible to send query string to...