This will sound like a silly question, but I searched around for a while until I lost my patience:
How this kind of pagination works?
"www.example.com/p/1"
How do I do one like that?
What languages should I use?
*NOTE: I am NOT talking about this kind of pagination: “www.example.com?page=1” using variables
Thanks in advance
This depends on the language/framework you are using.
It’s based on the routing engine used by the framework.
You can also do url re-writing with htaccess files or some libraries (depending your web server).
Without more details there are not many specifics I can give you.
For example for references on ASP.NET MVC routing see this: http://weblogs.asp.net/scottgu/archive/2007/12/03/asp-net-mvc-framework-part-2-url-routing.aspx
For references on Rails routing see this: http://guides.rubyonrails.org/routing.html