html - www subdomain looks different than main domain on Google Chrome -
i'm working on website looks different when browser pointed root domain , when pointed "www" subdomain. canvas width, font sizes, image sizes vary between root domain , "www" subdomain.
edit 1: happens on google chrome. on firefox, both pages same.
please refer these external links site in google chrome.
- without "www" - https://myshaadiwale.com
- with "www" subdomain - https://www.myshaadiwale.com
even browser console not show amiss. possibly cause difference?
the website based on python flask+apache stack. apache configuration file looks this:
<virtualhost *:443> servername myshaadiwale.com serveralias www.myshaadiwale.com serveradmin webmaster@localhost sslengine on sslcertificatefile /root/ssl/myshaadiwale.com.crt sslcertificatekeyfile /root/ssl/myshaadiwale.com.key sslcertificatechainfile /root/ssl/intermediate.crt wsgidaemonprocess msw user=live group=live threads=5 python-path=/home/live/msw/flask/lib/python2.7/site-packages wsgiscriptalias / /home/live/msw/msw.wsgi <ifmodule mod_deflate.c> <ifmodule mod_filter.c> # these known safe msie 6 addoutputfilterbytype deflate text/html text/plain text/xml # else may cause problems msie 6 addoutputfilterbytype deflate text/css addoutputfilterbytype deflate application/x-javascript application/javascript application/ecmascript addoutputfilterbytype deflate application/rss+xml addoutputfilterbytype deflate application/xml </ifmodule> </ifmodule> <directory /home/live/msw> #header set access-control-allow-origin "*" wsgiscriptreloading on wsgiprocessgroup msw wsgiapplicationgroup %{global} wsgipassauthorization on options allowoverride require granted </directory> </virtualhost> <virtualhost *:80> servername myshaadiwale.com serveralias www.myshaadiwale.com redirect permanent / https://www.myshaadiwale.com/ </virtualhost>
the pages still pixel identical. problem have changed browser zoom level , chrome remembers on per-domain basis. press ctrl
0
reset zoom 100% , pages again identical. pressing ctrl
+
reproduce problem shown in screenshots.
Comments
Post a Comment