I have this URI: www.miurl.es/productos/producto/nombre?medidas=90x180
I would like to get through .htaccess to have this type of url: www.miurl.es/productos/producto/nombre/90x180 but I can not get it through htaccess. I have looked at some of the rules for these cases but they do not solve me much.
this is the current htaccess:
Options +FollowSymLinks
Options -Indexes
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_URI} !^/es/
#RewriteCond %{REQUEST_URI} !^/index.php
#RewriteRule (.*) /es/ [R=301,L]
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_URI} !(.*).php
RewriteRule (.*) /index.php
RewriteCond %{QUERY_STRING} ^medidas=$ [NC]
RewriteRule ^(.*)$ $1? [R=301,L]
Options +FollowSymLinks -MultiViews
RewriteEngine on
Any suggestions ???