Closed
Description
I have a route:
constraints subdomain: "images" do
match "/:id(/:geometry)" => "images#show"
end
And a controller:
class ImagesController < ActionController::Base
force_ssl if Rails.env.production?
def show
# ...
end
end
If I go to: http://images.domain.dev/42/300x400?some=params
I get redirected to: https://images.domain.dev/42?some=params