我刚刚在我的 Apache 服务器上安装了 Phusion Passenger 来托管 Rails 3 应用程序。我的虚拟主机文件如下所示:
<VirtualHost *:80>
ServerName markusdanek.com
DocumentRoot /var/www/loremipsum/n22/public
<Directory /var/www/loremipsum/n22>
AllowOverride all
Options -Multiviews
Options -Indexes
</Directory>
</VirtualHost>
因此,当我尝试打开loremipsum/n22 - 我只能进入404 页面(甚至没有 index.html)
那么我怎样才能进入我的应用程序文件夹(localhost:3000/或localhost:3000/posts)?还有什么,我必须添加到虚拟主机吗?
我的路线.rb:
get "home/index"
root :to => 'home#index'