Moz_pagespped and seo
-
I am using mod_pagespeed to increase page speed.However it changed image url.
before: /cars.jpg
after: /cars.jpg.pagespeed.ci.dfdfdfre.webg with:mod_pagespeed
This is issue for seo?
How can i change it?
-
The benefits of quicker page load times are probably going to outweigh the dangers in having new URLs for your images. There might be some cases where inbound links to your site are pointing directly to your images, but that's rarer than links to the page for most sites. Google Developers offers a pretty extensive FAQ on the features as well as specific trouble you might run into here: https://developers.google.com/speed/pagespeed/module/faq so if you are having an issue like a 404 they provide some pointers there on how you can resolve it.
-
To prevent the URL rewrites by PageSpeed, follow the documentation here https://developers.google.com/speed/pagespeed/module/restricting_urls. You can add the following to your config file:
ModPagespeedDisallow "http://example.com/.jpg"
or
ModPagespeedDisallow ".jpg"