如何使用.htaccess重定向到另一个URL后重写URL

时间:2014-02-21 08:02:40

标签: php .htaccess mod-rewrite

我在分页系统中重定向页面时遇到问题。我写了.htaccess如下。

RewriteRule ^news.html?page=2 allnews.php?type=1&page2 [NC]
RewriteRule ^news.html allnews.php?type=1 [NC]

其实我想在news.html中添加分页系统。但它没有用:(

请帮帮我。

1 个答案:

答案 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]