2015-07-13 88 views
1

我是新用戶jwplayer。我有一個真正的視頻鏈接 http://domain.com/share/upload/test.mp4使用jwplayer重定向url

播放視頻使用jwplayer,我使用功能

jwplayer('player3').setup({ 
    file:"http://localhost:8080/video/test.mp4" 
}) 

,但我想重定向URL文件jwplay到URL

http://domain.com/share/upload/test.mp4 

和我一直在使用.htaccess

RewriteRule ^video/(.*)$ http://domain.com/share/upload/$1 [L] 

但我無法播放視頻。我需要一個解決方案

+0

您需要以相反的方式執行此操作,並省略「http:// domain.com」。所以'RewriteRule^share/upload /(.*)$/video/$ 1 [L]' –

回答

0

如果您正在重新定向該文件,請嘗試此操作。

變化:

file:"http://localhost:8080/video/test.mp4" 

要:

file:"http://localhost:8080/video/test.mp4", 
type: "mp4" 

運作的?