2013-04-01 47 views
1

這是我目前有:如何重定向到頁碼? .htaccess的

http://www.example.com/main?page=2 
http://www.example.com/query?page=5 
http://www.example.com/archives?page=2 

而且我想用來替換:

http://www.example.com/main/2 
http://www.example.com/query/5 
http://www.example.com/archives/2 

但我還是希望有$ _GET [ '頁'] :)

如何用htaccess做到這一點?

回答

0

在你的文檔根htaccess文件,添加這些規則(優選高於任何路由規則,你可能有):

RewriteEngine On 
RewriteRule ^(.*)/([0-9]+)$ /$1?page=$2 [L]