Rewrite Get Parameter in URL
I have an url like: /?page=2/开发者_StackOverflow
and want to rewrite it to : /page/2/
.
What is the best way to do that?
Language/hosting environment would really help here.
As ChvyVale mention if you are using php then using mod_rewrite is your best bet.
If you are using .NET then you need to look into ASP.NET Routing
精彩评论