Rewrite Issue with links

Before our last upgrade from 2.1.0 to 2.1.4



The pages of our eshop had on their source code the correct url for each product/category:


Now although the title and the url is the same, on the source code of the same page has:


We didnt change anything at .htaccess

DirectoryIndex index.html index.php


RewriteEngine on
# Some hostings require RewriteBase to be uncommented
# Example:
# Your store url is [url]http://www.yourcompany.com/store/cart[/url]
# So "RewriteBase" should be:
# RewriteBase /store/cart
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !\.(png|gif|ico|swf|jpe?g|js|css)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php?sef_rewrite=1 [L,QSA]

RewriteCond %{REQUEST_FILENAME} .*\/catalog\/.*
RewriteCond %{REQUEST_FILENAME} -d
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteRule . index.php?sef_rewrite=1 [L,QSA]



What should we do?