0

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

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

添加这个(-cool):

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

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

谢谢!

4

1 回答 1

0

尝试这个:

RewriteEngine On
RewriteCond %{REQUEST_URI}  \.html$ 
RewriteRule ^example.com\/(.+)\.html$   $1-cool.html
于 2017-02-28T22:29:25.873 回答