使用mod_rewrite将字符串插入到目录中的所有文件中



我希望使用mod_rewrite在特定URL中的所有文件扩展之前插入字符串。示例:

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

添加此(-cool):

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

到/产品/目录中的每个URL。

谢谢!

尝试以下:

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

相关内容

  • 没有找到相关文章

最新更新