0

htaccess 是否适用于接受变量的 swf 文件?

我有这个 swf 网址...

http://subdom.domain.tld/subfolder/live.swf?stream=rtmp://stream.domain.com/application&provider=rtmp&file=streamname&autostart=true

我希望它被重写为 http://subdom.domain.tld/subfolder/assignedname/

到目前为止,这是我在 .htaccess 文件上写的

RewriteEngine On

RewriteRule ^kwt/?$ live.swf?stream=rtmp://stream.domain.com/application&provider=rtmp&file=streamname&autostart=true [NC,L]

它似乎确实重写了 swf 文件,因为 swf 正在显示,但由于某种原因无法识别该变量。即使在 RewriteRule 中将自动播放变量设置为 true,它也不会自动播放。

我的代码有问题还是无法在 swf 文件中完成?

4

1 回答 1

0

您不能这样做,因为 Flash 播放器会在“显示的”URL 中查找查询字符串中的变量,而重写的“干净”URL 没有这些变量。

于 2012-04-13T11:24:11.120 回答