我正在重写这种网址
http://deia.info/category/calendar/10/
至
/index.php?task=browse_posts&catid=$2
通过 .htaccess 中的这段代码
RewriteRule ^category/(.+)/(.+) /index.php?task=browse_posts&catid=$2
这似乎可以完成这项工作。问题是当发送附加参数时,这些参数被忽略。
例如:
http://deia.info/category/calendar/10/?start_date=10
isset($_GET['start_date'])
不会返回真
为什么?