【发布时间】:2013-09-08 23:02:02
【问题描述】:
我有以下 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
只是当我尝试使用其他的时候,只有 name get 变量被传递,而不是
$_GET['season']
或
$_GET['episode']
我知道这很可能是我错过或做过的一些简单的事情,但我似乎无法让它发挥作用。
【问题讨论】:
标签: php .htaccess mod-rewrite get rewrite