我在使用的.htaccess文件方面遇到了一些问题,我认为问题在于条件&我使用的例子我使用的规则已经正常使用。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} .*ts$|.*m3u8$ [NC]
RewriteRule ^(.*) process.php?file=$1 [NC,L]
</IfModule>
如果有人能够发现错误并指出我的写作方向,我将非常感激。
由于
答案 0 :(得分:1)
让你的.htaccess像这样:
RewriteEngine On
RewriteRule ^.*\.(?:ts|m3u8)$ process.php?file=$0 [NC,L,QSA]