xiaoqin_007
新手上路

UID 89482
精华
0
积分 28
帖子 17
金钱 28 喜悦币
威望 0
人脉 0
阅读权限 10
注册 2007-3-16
状态 离线
|
.htaccess 重写后链接自动增长?
请教各位
我的链接为什么会自动增长 而且 分页不能正常工作?
这是个搜索产品的页面, keywords 是搜索的关键字,page 是分页
想实现
默认首页是
test/keywords
分页时
test/keywords/Page2.html
test/keywords/Page3.html
....
现在的问题是:
点击分页时没有用,而且点一次 链接变长一次 如:test/products.php/g/g/page2.html
我的.htaccess 这样写的:
RewriteCond %{REQUEST_URI} (.*)\/page(.*)\/$
RewriteRule (.*)\/page(.*)\/$ /test/products.php?keywords=$1&page=$2 [L]
RewriteCond %{REQUEST_URI} (.*)\/$
RewriteRule (.*)\/$ /test/products.php?keywords=$1 [L]
不知道怎么解决,请教
|
|