だから現在私は次のようなURLを持っています:
http://test.com/images/1/Villa-1_watermark.jpg&width=132&height=123
理想的には、サブディレクトリにあるすべての画像からクエリ文字列( "&width = 132&height = 123")を削除する.htaccessファイルをimagesディレクトリ内に置きたいと思います。
私は現在持っています:
Options +FollowSymlinks -MultiViews
RewriteEngine on
RewriteCond %{QUERY_STRING} ^width=([^&]+)&height=([^&]+)$ [NC]
RewriteRule . %{REQUEST_URI}? [L,R]
どんな助けでもいただければ幸いです。