.htaccess重写两个变量

时间:2016-04-06 23:10:37

标签: php .htaccess

这是我目前的重写行

RewriteRule ^cam/([^/]+) /index.php?cate=$1[L]

然而在cate=$1之后我需要定义另一个变量我需要定义$currentpage

所以RewriteRule ^cam/([^/]+)//index.php?cate=$1&currentpage=[L]

我已经放了两个没有问号的问号,我不知道会发生什么。谢谢你的任何帮助,我希望我已经明确表示我正在努力解决的问题。

1 个答案:

答案 0 :(得分:1)

使用:

RewriteRule ^cam/([^/]+)/([^/]+)/?$ /index.php?cate=$1&currentpage=$2 [NC,L]
RewriteRule ^cam/([^/]+)/?$ /index.php?cate=$1 [NC,L]