我在分页系统中重定向页面时遇到问题。我写了.htaccess如下。
RewriteRule ^news.html?page=2 allnews.php?type=1&page2 [NC]
RewriteRule ^news.html allnews.php?type=1 [NC]
其实我想在news.html中添加分页系统。但它没有用:(
请帮帮我。
答案 0 :(得分:0)
最终的URI可能是allnews.php?type=1&page=2
而不是allnews.php?type=1&page2
。
RewriteEngine On
RewriteRule ^news\.html$ /allnews.php?type=1 [NC,QSA]