我们以前在旧网站上遇到过这个问题,但仅限于某些浏览器。我们最近推出了我们的新网站,现在这个问题似乎正在影响所有浏览器。当您访问没有 WWW 前缀的网站时,您会被带到“建设中”页面,我被告知这是某种服务器错误页面。
这是域:www.mcfaddengavender.com
这是我当前的 .htaccess 文件:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
是否可以强制所有浏览器加载 WWW 前缀?