1
您能否給我一個這樣的重寫規則?重寫規則php
http://www.example.com/?currentpage=2
我需要的東西,如:http://www.example.com/curentpage/2.html,什麼是搜索引擎優化更好。
請幫忙
您能否給我一個這樣的重寫規則?重寫規則php
http://www.example.com/?currentpage=2
我需要的東西,如:http://www.example.com/curentpage/2.html,什麼是搜索引擎優化更好。
請幫忙
這個怎麼樣?
RewriteRule ^/\?(.*?)=(\d+)$ $1/$2.html [R=301,L]
只是一樣@limc說,而是換成了(。*?)與當前頁
RewriteRule ^/\?currentpage=(\d+)$ currentpage/$1.html [R=301,L]
我需要一些東西來改寫包含當前頁,becouse我有其他重寫規則的網址這可能會產生衝突...... – webmasters 2011-02-07 20:23:38