Mobile app version of vmapp.org
Login or Join
Gonzalez347

: Can minifying the HTML of page have a negative effect on SEO? I've been reviewing the speed of a site using Google PageSpeed, and one of the things it told me to do was minify the HTML

@Gonzalez347

Posted in: #GooglePagespeed #PageSpeed #Performance #Seo

I've been reviewing the speed of a site using Google PageSpeed, and one of the things it told me to do was minify the HTML of the page.

I'm fine with this, but by minifying the HTML (or any other markup or language) it begins to obfuscate it.

Could minifying the HTML of a page, although making the page faster, have a negative effect on how the search bot can read my page, and thus how well the site will rank?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Gonzalez347

1 Comments

Sorted by latest first Latest Oldest Best

 

@Courtney195

This is a good question, but the answer is no - it will not affect your search engine rankings negatively. It will provide a (marginal) benefit due to decreased file size.

To understand why it won't negatively affect you, open your site up, right click anywhere, and select "Inspect element" (this option will be called something slightly different between different browsers, and is distinct from "View source" in that it shows you the source of your page after processing by the browser).

Now turn your HTML minification on, and do the same thing. Does it look any different? While you'll notice the classic View source option shows code that is a bit more unreadable to you, viewing the processed source will be no different.

The point here is that once the browser has parsed the HTML, whether it's minified or not, it's all the same. A search engine bot will also work the same way. Line breaks and indentation in an HTML document are simply for human readability - your original code needs to be readable by humans, but the resulting code once it's processed can be compressed as much as you like - the browser, the bots, any other machine cares only for code, not presentation.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme