Mod_rewrite .htaccess问题

时间:2017-08-18 11:27:19

标签: apache .htaccess mod-rewrite webserver

我在使用的.htaccess文件方面遇到了一些问题,我认为问题在于条件&我使用的例子我使用的规则已经正常使用。

<IfModule mod_rewrite.c> 
RewriteEngine On
RewriteCond %{REQUEST_URI} .*ts$|.*m3u8$ [NC] 
RewriteRule ^(.*) process.php?file=$1 [NC,L]
</IfModule>

如果有人能够发现错误并指出我的写作方向,我将非常感激。

由于

1 个答案:

答案 0 :(得分:1)

让你的.htaccess像这样:

RewriteEngine On

RewriteRule ^.*\.(?:ts|m3u8)$ process.php?file=$0 [NC,L,QSA]