没有 www 就无法访问 Varnish

没有 www 就无法访问 Varnish

昨天,我在我的 CentOS 6 32 位 VPS 服务器上为我的 magento 商店安装了 varnish 和 memcached,当我访问 www.my-website.com 或http://my-website.com它可以工作,但是当我在 Firefox 中输入“my-website.com”时

    错误 503 服务不可用

    暂停服务

    上师冥想:    
    编号: 1512050071

我尝试重定向,但没有效果

if (req.url ~ "http://my-website.com") {
      error 750 "http://www." + req.http.host + "my-website\.com";
 }

if (req.url ~ "^my-website.com") {
      error 750 "http://www." + req.http.host + "my-website\.com";
 }

///////////

好的,我找到了解决方案。我在 backend default.vcl 中将 localhost 替换为我的服务器 ip

相关内容