2
如果用戶不使用它,我想重定向我的rails應用程序以將www添加到url。我發現這個網站將其刪除,但我想反其道而行之:如何使用機架重寫將www添加到url?
http://steve.dynedge.co.uk/2010/03/03/using-rackrewrite-to-remove-the-www/
如果用戶不使用它,我想重定向我的rails應用程序以將www添加到url。我發現這個網站將其刪除,但我想反其道而行之:如何使用機架重寫將www添加到url?
http://steve.dynedge.co.uk/2010/03/03/using-rackrewrite-to-remove-the-www/
你能不只是做這樣的事?
r301 /.*/, Proc.new {|path, rack_env| "http://www.#{rack_env['SERVER_NAME']}#{path}" },
:if => Proc.new {|rack_env| ! (rack_env['SERVER_NAME'] =~ /www\./i)}