I noticed a strange thing. When SEO URL's are activated, there is a display problem in the pages stored in Google's cache.
The pages are not displayed correctly and some pictures don't show.
This only occurs when SEO is activated and on particular pages like
http://www.example.com/manufacturer/product-name
I tracked down the problem and discovered that it was due to <base href=""/>
Indeed, Opencart uses <base href="http://....." /> to tell the browser that all relative paths should use the base url. (stylesheet, images)
The problem is that google overrides <base href=""> and uses "http://www.example.com/manufacturer/product-name" (the real url of the cached current page) as the new base.
Which means that when you call "catalog/view/theme/your_theme/stylesheets/style.css" the browser will try to call
"http://www.example.com/manufacturer/catalog/view/theme/your_theme/stylesheets/style.css"
This is of course not correct, the right path is "http://www.example.com/catalog/view/theme/your_theme/stylesheets/style.css"
So, if the stylesheets are not loaded, the display is altered.

How to solve this issue?
Well, it's quite simple. If your store is at the root of your domain, just add a "/" in front of each external file call.
=> "/catalog/view/theme/your_theme/stylesheets/style.css".
If your store is in a subdirectory you will have to name the subdirectory :
"/subdirectory/catalog/view/theme/your_theme/stylesheets/style.css"
But if you change your store's directory, you will have to change all the paths again
Now, this is not really an issue due to Opencart, I would say that Google does not handle this well.
google should not override your <base> url.
Moreover, if you designed your own template, maybe you will not have this problem if you did not use <base href>.
I had this problem because I designed my own template using the default template of Opencart as an example.
That is no big deal; this is just for some pages and only when viewing the page from Google's cache. But, let's do things correctly

PS: All products images display correctly as opencart references them to their complete path: <img src="http://www.example.com/image/data/image.jpg" />
So, this is in fact a problem related to the template.
PS2: This problem also occurs with the captcha image.