我正在强制我的网络服务器将非 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
可能是什么原因造成的?
答案1
我能够解决这个问题。这是一个 magento 设置。
中有一个设置system->configuration->Web->Url Options->Auto-redirect to Base URL
。将其设置为'不“”。