我不确定这个设置在哪里。目前我的网站将每个非 www 的 URL 重定向到 www。我正在使用 Rubber gem 部署到 AWS,而 AWS 又使用Passenger,并且我看到一些帖子表明此配置取决于Passenger。我正在使用 Apache 2
问问题
58 次
1 回答
2
此任务是通过正确配置服务器的虚拟主机(不是 RoR 或Passenger)来完成的。
您应该在您的网络服务器(apache、nginx、..)上本地化主机文件并放置如下内容:
<VirtualHost *:80>
DocumentRoot /www/example1
ServerName example.com
# Other directives here
</VirtualHost>
也许这个链接可以帮助你: http ://httpd.apache.org/docs/trunk/vhosts/examples.html
于 2013-06-22T10:48:41.653 回答