Ben son 1 yıl içinde PHP üzerinde çalışıyordu ve bugünlerde Raylar öğreniyorum.
In rails:-- Routing takes an incoming URL and decodes it into a set of parameters that are used by Rails to dispatch to the appropriate controller and action
Örneğin
rs.recognize_path "/blog/show/123"
{:controller=>"blog", :action=>"show", :id=>"123"}
Haklı mıyım?
Biz bu kod satırını kullanarak "/ blog/show/123" gibi isteği işlemek için nasıl raylar anlatmak için config dizinine altında routes.rb bu kod (yazılı) hat söz.
map.connect "blog/show/:id", :controller => "blog", :action => "show", :id => /\d+/
Şimdi PHP biz böyle bir şey yaptığınızda
www.xxx.com/profile.php?profile_id=2
How is the request sent to the requested page? Means I never wrote anything for routing in PHP, so how hss this request been handled? How is the routing done in PHP (anything I missed during my learning/working in PHP)?
Umarım ben soruyorum ne olsun. Belirsiz Herhangi bir parçası varsa bana bildirin lütfen.