保留二级域名
1 2 3 4 |
class Account < ActiveRecord::Base ReservedSubdomains = %w[admin blog dev ftp mail pop pop3 imap smtp stage stats status www] validates_exclusion_of :subdomain, :in => ReservedSubdomains, :message => 'is not allowed' end |
Posted by devon At June 25, 2008 09:51
请登录以发表评论。