Help optimize the site for SEO - Printable Version +- Post4VPS Forum | Free VPS Provider (https://post4vps.com) +-- Forum: Web Technology & Internet (https://post4vps.com/Forum-Web-Technology-Internet) +--- Forum: SEO Optimization (https://post4vps.com/Forum-SEO-Optimization) +--- Thread: Help optimize the site for SEO (/Thread-Help-optimize-the-site-for-SEO) Pages:
1
2
|
Help optimize the site for SEO - hamed - 09-14-2019 Hello . I use my site to track my site load speed and review the information needed to optimize my website for better SEO. But I didn't notice (photo). https://gtmetrix.com the photo url (see pls) : https://imgur.com/a/fI6DHQp qusetion : Make fewer HTTP requests ------------ If you have another site to optimize your website and see site information such as site load speed and other SEO information, please share the link for me here. ----------- RE: Help optimize the site for SEO - LightDestory - 09-14-2019 There are two types of fix: 1) if you are using CDN to get libraries such as JS scripts, CSS frameworks: just stop using CDN e start hosting your own copy on your storage. This applies also to media assets that you use without hosting them on your server. 2) Use less redirect. For the errors try the "callback" handling RE: Help optimize the site for SEO - humanpuff69 - 09-15-2019 (09-14-2019, 05:32 PM)hamed Wrote: Hello . I use my site to track my site load speed and review the information needed to optimize my website for better SEO. But I didn't notice (photo). (09-14-2019, 10:43 PM)LightDestory Wrote: There are two types of fix: CDN can make website faster and slower . depend on the case it can make it faster if the hosting is extremely slow but it can make it slower if the hosting actually is much faster than the CDN . another benefit of CDN is less bandwidth on your hosting this is important for low bandwidth hosting user RE: Help optimize the site for SEO - LightDestory - 09-15-2019 (09-15-2019, 01:11 PM)humanpuff69 Wrote: CDN can make website faster and slower . depend on the case I have given my opinion regarding the MAIN ISSUE that he reported us. The main issue, as you can read, are the numbers of HTTP requests that his site makes on loading. HTTP requests on websites are commonly used to grab stuff from CDNs. What you said it is true, but right now his problem are the HTTP requests. So I can suggest to minify the sources and use own hosting. RE: Help optimize the site for SEO - Mashiro - 09-15-2019 Fixing the too many HTTP requests issue is actually quite easy. You have to find all resources that are loaded over a HTTP link and change it to HTTPS. If something is not loading after that the issue might be that the server from where the resource was loaded doesn't support HTTPs. In this case I recommend to host the script yourself on HTTPS or find a mirror with HTTPs. Most script and style CDNs actually all support HTTPs. Just the theme or plugin developers are absolutely lazy and don't bother with putting HTTPS links or simple //domain.extension/filename.extension links that automatically adjust to the protocol used on the parent site. To find the resources you can either simply check the source code of your page or use the web browser development console. Furthermore maybe that testing site can even tell you what is loaded over HTTP. The issue is absolutely unrelated to whether CDNs should be used to host scripts or not. Only relation to CDN here is as said before if that CDN doesn't support HTTPS. In that case you either look for one that has HTTPs or really host it yourself on your HTTPS server. RE: Help optimize the site for SEO - hamed - 09-15-2019 (09-14-2019, 10:43 PM)LightDestory Wrote: There are two types of fix: Does this mean I can fix that error with these two solutions? (09-15-2019, 02:22 PM)Hidden Refuge Wrote: Fixing the too many HTTP requests issue is actually quite easy.In fact, do u mean to change the links on my site to https and use the plugins to transfer users who are logged in via http to get them to https? Thank you all . I just didn't get it right. Can I fix this problem if I use the plugin to transfer http to https? RE: Help optimize the site for SEO - Mashiro - 09-15-2019 Well, you should only be using HTTPS nowadays if you're caring about SEO so much and also about the website & data security and privacy of your users. Everything should be loaded via HTTPS including Javascript, CSS, images and every other resource. Don't use HTTP. TLS certificates even with wildcards are free nowadays with Let's Encrypt. I don't only mean that you should use HTTPS on your site only and redirect all HTTP requests to HTTPS but you should fix all resources that are loading from HTTP. The test you showed said there are so many and so many of these and that files that are loaded over HTTP (14 javascript files and 8 stylesheets). You need to find the URLs of these resources and change their protocol to HTTPS. Most are pretty much linked in the theme and plugin files. Also I would recommend to do what @LightDestory recommended. Combine things together or minify them in order to decrease the overall amount of requests on your page and the page size. This will improve the loading speed, performance and your SEO score. Off the topic rant: I don't really understand how people can use themes and plugins that are heavily bloated. I mean what the heck???? 14 javascripts and 8 stylesheets. What? What do you need? Usually you only need one stylesheet for the theme style and probably JQuery + custom Javascript for theme functions. This are 3 - 5 resources but NOT 22. And people also wonder about their site getting hacked... welcome Javascript cross injections with so many scripts that are maintained by who? People don't even realize that most themes or plugins hardcode URLs to ONLY certain version of Javascripts by using the version string... this means if that Javascript version has security issues... they're never fixed because no one changes the link to the next version with the fixed code. That's one reason why I stopped using Wordpress and similar stuff. Nothing nowadays is made properly. Everyone wants/uses bloated and super fency stuff but no one pays attention to what this does to their site, security and data integrity. RE: Help optimize the site for SEO - hamed - 09-22-2019 (09-15-2019, 05:50 PM)Hidden Refuge Wrote: Well, you should only be using HTTPS nowadays if you're caring about SEO so much and also about the website & data security and privacy of your users. Everything should be loaded via HTTPS including Javascript, CSS, images and every other resource. Don't use HTTP. TLS certificates even with wildcards are free nowadays with Let's Encrypt. Thanks for all the tips. I have another question for you. Is ip dedicated to SEO effective? Or not . Im going to buy a dedicated ip for my hosts . In your opinion do I buy? And please introduce a plugin for transferring http to https for WordPress. RE: Help optimize the site for SEO - Sn1F3rt - 09-22-2019 @hamed You can use a plug-in called "Really Simple SSL" as it sets up the redirect in the touch of a button. However, if you read my thread https://post4vps.com/Thread-Plugin-vs-htaccess I'd you to setup the redirect through editing the htaccess file method. This is bcoz of obvious reasons that you'll find in the thread itself. I've even given the code to be put in the file, so just copy and paste into your WP directory .htaccess file and replace with your domain name. Personally, I'll suggest you to use the least amount of plugins with WP as you'd have to careful about your choice of plugins then. Regards, RE: Help optimize the site for SEO - hamed - 09-22-2019 (09-22-2019, 12:46 PM)sohamb03 Wrote: @hamed You can use a plug-in called "Really Simple SSL" as it sets up the redirect in the touch of a button. This plugin occupies many hardware resources after visitors arrive. Is there any other plugin that uses less hardware? |