我在 godady 中引入了一个域,并在 Linux/Unix(Ubuntu) 服务器上安装了Passenger + Nginx,并部署了一个 Ruby 应用程序。现在,当我尝试从浏览器请求时,我的域看起来像 http://example.com 。但我希望我的域在每次从浏览器(如http://www.example.com .)请求时默认重定向到www 。
例子.conf
server {
listen 80;
server_name www.example.com example.com;
# return 301 $scheme://www.example.com$request_uri;
# Tell Nginx and Passenger where your app's 'public' directory is
root /var/www/example/public;
# Turn on Passenger
passenger_enabled on;
passenger_spawn_method direct;
passenger_min_instances 1;
#passenger_pool_idle_time 0;
rails_env development;
passenger_ruby /usr/local/rvm/gems/ruby-2.3.3/wrappers/ruby;
passenger_sticky_sessions on;
}
取消注释该行
返回 301 $scheme://www.example.com$request_uri;
正在抛出错误
www.example.com redirected you too many times.
Try clearing your cookies.
ERR_TOO_MANY_REDIRECTS
我被迫在浏览器中手动输入www.example.com 。相反,我如何默认重定向到www ?
非常感谢任何帮助。提前致谢!
您基本上需要两个
server
配置块:www
; 仅重定向到基本域这是一个帮助您入门的示例:
最简单的方法可能是使用 NGINX
if
语句。只需将以下内容放入您的虚拟主机配置中:并确保将“example.com”替换为您的域名。
虽然这是我发现的最简单的方法,但它不是最好的。
server
推荐的路线是为非 www创建一个单独的块,并将return
语句放在那里。