我有以下 htaccess 重写规则
RewriteRule ^shows-watch/(.*).html?$ show.php?name=$1
RewriteRule ^shows-watch/(.*)/season-(.*).html?$ show.php?name=$1&season=$2
RewriteRule ^shows-watch/(.*)/season-(.*)/episode-(.*).html?$ show.php?name=$1&season=$2&episode=$3
现在的问题是,第一个重写规则工作得很好
RewriteRule ^shows-watch/(.*).html?$ show.php?name=$1
只是当我尝试使用其他人时,只有名称获取变量被传递而不是
$_GET['season']
或者
$_GET['episode']
我知道这很可能是我想念或做过的简单事情,但我似乎无法让它发挥作用。