0
你好,我是PHP的初學者。 我讀這篇文章http://flowplayer.blacktrash.org/secure-http.html ,我不明白htaccess文件正則表達式PHP混淆視頻網址
RewriteRule ^(.*)/(.*)/(.*)$ video.php?h=$1&t=$2&v=$3
這個PHP文件
$hash = $_GET['h'];
$streamname = $_GET['v'];
$timestamp = $_GET['t'];
無法理解這是如何工作的正則表達式?什麼是h = $ 1?