我希望使用mod_rewrite在特定网址中的所有文件的扩展名之前插入一个字符串。例如:
example.com/products/this-is-a-product.html
添加此(-cool):
example.com/products/this-is-a-product-cool.html
到/ products /目录中的每个URL。
谢谢!
答案 0 :(得分:0)
试试这个:
RewriteEngine On
RewriteCond %{REQUEST_URI} \.html$
RewriteRule ^example.com\/(.+)\.html$ $1-cool.html