最近,我已将SSL证书添加到我的学院网站 - Successrisers。 在添加此功能之前,我在移动设备和桌面设备上的谷歌网页洞察得分均为100/100。此外,pingdom工具没有显示任何问题。
但是在我的网站上添加SSL证书后,由于重定向链问题导致性能下降。不知何故,我在.htaccess
的WordPress中做了一些更改,并获得了100/100的Google页面洞察得分。但Pingdom工具仍然显示重定向链问题。
错误显示如下。
{Remove the following redirect chain if possible:
http: //successrisers.com/
http: //www.successrisers.com/}
另请查看此处提供的.htaccess
文件代码 -
# BEGIN GD-SSL
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteCond %{HTTP_USER_AGENT} ^(.+)$
RewriteCond %{SERVER_NAME} ^successrisers\.com$
RewriteCond %{SERVER_NAME} ^www\.successrisers\.com$
RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
Header add Strict-Transport-Security "max-age=300"
</IfModule>
# END GD-SSL
# 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
# 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
请建议我进行一些更改,以便我可以解决此网址重定向链错误。