If you meant that you want some actions to only be accessed over http, you might want to do something like the following:
class MyController < ApplicationController
before_filter :redirect_to_http, :except => :my_ssl_action
def redirect_to_http
redirect_to :protocol => “http://” and return false if @request.ssl?
end
end
James.