Hello.
You can see a Pingdom result here:
http://tools.pingdom.com/fpt/#!/dENvmB/http://musafir.world/
As well as a GTmetrix result here:
https://gtmetrix.com/reports/musafir.world/fu1YKVko
These will help you greatly.
But a good starting point is installing a caching plugin.
My personal recommendation is Cache Enabler -
https://wordpress.org/plugins/cache-enabler/
Install that, and configure it.
Next - optimise images - use EWWW Image Optimizer. See
https://wordpress.org/plugins/ewww-image-optimizer/
I'm not sure if you have cPanel or not - but it's always a good idea to also use cPanel's in-built optimising.
Login to cPanel and in the search bar type "Optimize Website" then click on this button -
http://i.imgur.com/sZT8smc.png
Then select "Compress all content" -
http://i.imgur.com/vK1QU9b.png
Your website has no expires headers.
Enter this into your .htaccess:
Code:
# Expires headers (for better cache control)
<IfModule mod_expires.c>
ExpiresActive on
# Perhaps better to whitelist expires rules? Perhaps.
ExpiresDefault "access plus 1 month"
# cache.appcache needs re-requests in FF 3.6 (thanks Remy ~Introducing HTML5)
ExpiresByType text/cache-manifest "access plus 0 seconds"
# Your document html
ExpiresByType text/html "access plus 0 seconds"
# Data
ExpiresByType text/xml "access plus 0 seconds"
ExpiresByType application/xml "access plus 0 seconds"
ExpiresByType application/json "access plus 0 seconds"
# Feed
ExpiresByType application/rss+xml "access plus 1 hour"
ExpiresByType application/atom+xml "access plus 1 hour"
# Favicon (cannot be renamed)
ExpiresByType image/x-icon "access plus 1 week"
# Media: images, video, audio
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
ExpiresByType video/ogg "access plus 1 month"
ExpiresByType audio/ogg "access plus 1 month"
ExpiresByType video/mp4 "access plus 1 month"
ExpiresByType video/webm "access plus 1 month"
# HTC files (css3pie)
ExpiresByType text/x-component "access plus 1 month"
# Webfonts
ExpiresByType application/x-font-ttf "access plus 1 month"
ExpiresByType font/opentype "access plus 1 month"
ExpiresByType application/x-font-woff "access plus 1 month"
ExpiresByType application/x-font-woff2 "access plus 1 month"
ExpiresByType image/svg+xml "access plus 1 month"
ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
# CSS and JavaScript
ExpiresByType text/css "access plus 1 year"
ExpiresByType application/javascript "access plus 1 year"
</IfModule>
Avoiding URL redirects will help too:
Code:
Remove the following redirect chain if possible:
http://go.padstm.com/slider.php?zoneid=536446&position=top
http://go.padsdel.com/slider.php?zoneid=536446&position=top
Remove the following redirect chain if possible:
http://go.padstm.com/slider.php?zoneid=539107&position=center
http://go.padsdel.com/slider.php?zoneid=539107&position=center
Remove the following redirect chain if possible:
http://placehold.it/140x110
https://placeholdit.imgix.net/~text?txtsize=13&txt=140%C3%97110&w=140&h=110
Remove the following redirect chain if possible:
http://v2.zopim.com/?3gQOAFIiWsh3yPaYYEsukfCSkFFFQnC2
http://v2.zopim.com/bin/v/widget_v2.134.js
Finally, use a CDN. CloudFlare has a free option - and unless you need your own SSL (issued to you), CloudFlare will be sufficient.
If you need your own SSL (issued to you) then KeyCDN is a great choice.
CloudFlare has their own Wordpress plugin -
https://wordpress.org/plugins/cloudflare/
KeyCDN does, too -
https://wordpress.org/plugins/cdn-enabler/
These should help greatly!