使用.htaccess和Apache重写两个参数的URL

时间:2015-05-31 11:21:34

标签: php apache .htaccess mod-rewrite

我在.htaccess中有以下代码:

Options -Indexes

RewriteEngine on

RewriteRule ^category/([a-zA-Z0-9-/]+)/page/([0-9]+)/{0,1}$ themes/tema_2/category.php?slug=$1&page=$2 [NC,L,QSA]

我遇到第二个参数" page" ...当我$_GET['slug']时,我得到类似这样的内容:fudbal/page/2如果我的网址是这样的:{{1} }。

所以http://exmpl.com/category/fudbal/page/2会在$_GET['slug']之后返回所有类似它的slu ..

我需要实现这一点:当我回显category/以回显$_GET['slug']时,当我回显fudbal以回应$_GET['page']时。

1 个答案:

答案 0 :(得分:0)

你需要调整你的正则表达式来修复你的问题:

Options -Indexes
RewriteEngine on

RewriteRule ^category/([^/]+)/?$ themes/tema_2/category.php?slug=$1 [NC,L,QSA]
RewriteRule ^category/([^/]+)/page/(\d+)/?$ themes/tema_2/category.php?slug=$1&page=$2 [NC,L,QSA]