所以目前我有一个像:
这样的网址http://test.com/images/1/Villa-1_watermark.jpg&width=132&height=123
理想情况下,我想在images目录中有一个.htaccess文件,该文件从位于子目录中的所有图像中删除查询字符串(“& width = 132& height = 123”)。
我目前有:
Options +FollowSymlinks -MultiViews
RewriteEngine on
RewriteCond %{QUERY_STRING} ^width=([^&]+)&height=([^&]+)$ [NC]
RewriteRule . %{REQUEST_URI}? [L,R]
任何帮助都将不胜感激。
答案 0 :(得分:1)
Apache不会将&width=132&height=123
识别为查询字符串,因为它没有前导?
。试试这个:
RewriteEngine on
RewriteRule (.*)&.* $1 [L]