如果 URL 中包含 www,则网站无法运行

如果 URL 中包含 www,则网站无法运行

我正在强制我的网络服务器将非 www URL 重写为 www,https://example.com例如https://www.example.com通过.htaccess

RewriteCond %{HTTP_HOST} !^$
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTPS}s ^on(s)|
RewriteRule ^ http%1://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

但我的网站没有加载万维网和印刷品错误信息

如果我输入类似这样的 URL https://www.example.com/some-uri,我就会被重定向到https://example.com

DNS 区域记录 DNS 区域记录

可能是什么原因造成的?

答案1

我能够解决这个问题。这是一个 magento 设置。

中有一个设置system->configuration->Web->Url Options->Auto-redirect to Base URL。将其设置为'“”。

相关内容