2011-11-01 70 views

回答

2

使用從訪問的RewriteCond回refernces。因此,在你的例子:

RewriteCond %{HTTP_REFERER} ^http://example\.com/dir[0-9]/?(.*)?$ 
RewriteRule ^images/(.*)$ other_dir%1/images/$1 [L] 

%1將與什麼在HTTP引用的是的RewriteCond匹配所取代。

+0

tnx man,that worked – Antagonist

相關問題