收藏:Lighttpd和RoR安装配置的疑难解答

http://www.iteye.com/wiki/rails_deployment/1299-lighttpd-and-ror-installation-configuration-troubleshooting#1502

 

补充:

 

对于 Rails 2.3.8,Robbin提到的下面的配置无效,

 

  1. class ActionController::AbstractRequest  
  2.   def relative_url_root  
  3.     '/myapp'  
  4.   end  
  5. end  

 

改成:

 

 

  1. ActionController::Base.relative_url_root = '/hello'

 

 

你可能感兴趣的:(lighttpd,Rails)