使用mod_rewrite在URL中为目录中的所有文件插入字符串

时间:2017-02-28 21:12:22

标签: url-rewriting mod

我希望使用mod_rewrite在特定网址中的所有文件的扩展名之前插入一个字符串。例如:

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

添加此(-cool):

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

到/ products /目录中的每个URL。

谢谢!

1 个答案:

答案 0 :(得分:0)

试试这个:

RewriteEngine On
RewriteCond %{REQUEST_URI}  \.html$ 
RewriteRule ^example.com\/(.+)\.html$   $1-cool.html