我需要重定向图片以使其看起来更短
我有什么
"http://site.com/images/screenshots/509cd93aad063.png"
我需要什么
"http://site.com/509cd93aad063.png" or even "http://site.com/509cd93aad063" if possible.
我已经尝试了
RewriteRule ^(.png)$ images/screenshots/$1 [L] - No success =(
答案 0 :(得分:1)
您需要添加通配符.*
RewriteRule ^(.*\.png)$ images/screenshots/$1 [L]
更好的是,您可以从通配符中排除/:
RewriteRule ^/?([^/]*\.png)$ images/screenshots/$1 [L]
这样规则仅适用于根路径。
提示,您可以在线调试正则表达式:http://regexpal.com/