08-13-2015, 10:29 PM
Here are my tests results:
http://www.webpagetest.org/result/150813...1/details/
In find the first DNS resolve time pretty long (according to my inexperienced judgment) and that probably explains the Grade D
If I run the test against the www version, then I get grade A or sometimes B.
The permanent redirection from non-www to www is done in the vhost file of my Apache server. I did something like that:
code]
Could someone provide me with a hint to improve the non-www version ?
http://www.webpagetest.org/result/150813...1/details/
In find the first DNS resolve time pretty long (according to my inexperienced judgment) and that probably explains the Grade D
If I run the test against the www version, then I get grade A or sometimes B.
The permanent redirection from non-www to www is done in the vhost file of my Apache server. I did something like that:
Code:
# Assuming that Apache listens on 127.0.0.1
<VirtualHost 127.0.0.1>
ServerName domainname.com
<IfModule mod_alias.c>
Redirect permanent / http://www.domainname.com/
</IfModule>
</VirtualHost>
<VirtualHost 127.0.0.1>
ServerName www.domainname.com
# other directives to process www.domainname.com
</VirtualHost>
[/
Could someone provide me with a hint to improve the non-www version ?