2017-02-28 8 views
0

mod_rewriteを使用して、特定のURLのすべてのファイルに拡張子の前に文字列を挿入します。例:mod_rewriteを使用して、ディレクトリ内のすべてのファイルのURLに文字列を挿入します。

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

(-cool)これを追加します。

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

/products /ディレクトリ内のすべてのURLに適用されます。

ありがとうございます!

答えて

0

これを試してみてください:

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

申し訳ありませんが、それは働いていません。繰り返しますが、私は/ products /ディレクトリ内のすべてのファイルに対してのみ必要です – idextrus

関連する問題