2012-11-09 74 views
0

我需要重定向圖像,使其看起來更短htaccess的圖像重定向

我有什麼

"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 =(

回答

1

您需要添加通配符.*

RewriteRule ^(.*\.png)$ images/screenshots/$1 [L] 

更妙的是,你可以從通配符排除/:

RewriteRule ^/?([^/]*\.png)$ images/screenshots/$1 [L] 

這樣的規則只在根路徑applys。

A提示,您可以在線調試正則表達式:http://regexpal.com/