我使用htaccess重定向到rtmp流
RewriteRule ^redirect$ rtmp://url.tv/live/
htaccess位于/subfolder1/subfolder2/
问题是此路径前置于rtmp url
我收到此错误:
The requested URL /subfolder1/subfolder2/rtmp://url.tv/live/ was not found on this server.
使用http
网址,这很好用。
我也尝试使用DPI
标志,但没有运气
RewriteRule ^redirect$ rtmp://url.tv/live/ [DPI]
答案 0 :(得分:2)
将此规则替换为此RedirectMatch
规则:
RedirectMatch ^/redirect/?$ rtmp://url.tv/live/
否则RewriteRule
无法将rtmp://
识别为独立协议,并在使用http://
标志时将R
附加到目标URI。