Pregunta

I need to write a rewrite that will repoint: www.example.com/thing1/thing2/thing3/thing4/product-name

to www.example.com/product-name.html

I tried: RewriteEngine On RewriteRule ^thing1/thing2/thing3/thing4/(.*)$ /$1 [R=302,L]

but I got a 404. All help welcome.

¿Fue útil?

Solución

If these in all try

RewriteRule ^thing1/thing2/thing3/thing4/(.*)$ /$1.html [R=302,L]

instead of

RewriteRule ^thing1/thing2/thing3/thing4/(.*)$ /$1 [R=302,L]
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top