0

I'm looking to use mod_rewrite to insert a string before the extension on all files in a specific url. Example:

example.com/products/this-is-a-product.html

add this (-cool):

example.com/products/this-is-a-product-cool.html

to every URL in the /products/ directory.

Thanks!

1 Answers1

0

Try this:

RewriteEngine On
RewriteCond %{REQUEST_URI}  \.html$ 
RewriteRule ^example.com\/(.+)\.html$   $1-cool.html
Psi
  • 6,387
  • 3
  • 16
  • 26