# File lib/action_controller/vendor/rack-1.0/rack/request.rb, line 201 def url url = scheme + "://" url << host if scheme == "https" && port != 443 || scheme == "http" && port != 80 url << ":#{port}" end url << fullpath url end